at 17.09-beta 502 B view raw
1# This module defines a small NixOS configuration. It does not 2# contain any graphical stuff. 3 4{ config, lib, pkgs, ... }: 5 6with lib; 7 8{ 9 environment.noXlibs = mkDefault true; 10 11 # This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale 12 i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ]; 13 services.nixosManual.enable = mkDefault false; 14 15 programs.man.enable = mkDefault false; 16 programs.info.enable = mkDefault false; 17 18 sound.enable = mkDefault false; 19}