at 16.09-beta 383 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}