mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
12 lines
263 B
Nix
12 lines
263 B
Nix
# This module defines a small NixOS configuration. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Don't include X libraries.
|
|
programs.ssh.setXAuthLocation = false;
|
|
fonts.enableFontConfig = false;
|
|
fonts.enableCoreFonts = false;
|
|
}
|