mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
51a5b775a6
svn path=/nixos/trunk/; revision=30334
12 lines
261 B
Nix
12 lines
261 B
Nix
# This module defines a small NixOS configuration. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Don't include X libraries.
|
|
services.openssh.forwardX11 = false;
|
|
fonts.enableFontConfig = false;
|
|
fonts.enableCoreFonts = false;
|
|
}
|