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