2010-09-25 11:32:57 +02:00
|
|
|
# This module defines a small NixOS configuration. It does not
|
|
|
|
# contain any graphical stuff.
|
|
|
|
|
2014-04-16 16:58:06 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-09-25 11:32:57 +02:00
|
|
|
|
2015-04-19 22:45:08 +02:00
|
|
|
with lib;
|
|
|
|
|
2010-09-25 11:32:57 +02:00
|
|
|
{
|
2015-04-19 22:45:08 +02:00
|
|
|
environment.noXlibs = mkDefault true;
|
|
|
|
i18n.supportedLocales = [ config.i18n.defaultLocale ];
|
2015-05-26 20:20:53 +02:00
|
|
|
services.nixosManual.enable = mkDefault false;
|
2010-09-25 11:32:57 +02:00
|
|
|
}
|