2010-09-25 02:32:57 -07:00
|
|
|
# This module defines a small NixOS configuration. It does not
|
|
|
|
# contain any graphical stuff.
|
|
|
|
|
2014-04-16 07:58:06 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-09-25 02:32:57 -07:00
|
|
|
|
2015-04-19 13:45:08 -07:00
|
|
|
with lib;
|
|
|
|
|
2010-09-25 02:32:57 -07:00
|
|
|
{
|
2015-04-19 13:45:08 -07:00
|
|
|
environment.noXlibs = mkDefault true;
|
2015-08-06 03:30:38 -07:00
|
|
|
|
|
|
|
# This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale
|
|
|
|
i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ];
|
2016-09-05 04:59:07 -07:00
|
|
|
|
2018-03-26 11:22:04 -07:00
|
|
|
documentation.enable = mkDefault false;
|
|
|
|
services.nixosManual.enable = mkDefault false;
|
2016-11-22 13:24:37 -08:00
|
|
|
|
|
|
|
sound.enable = mkDefault false;
|
2010-09-25 02:32:57 -07:00
|
|
|
}
|