diff options
Diffstat (limited to 'modules/options.nix')
-rw-r--r-- | modules/options.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/options.nix b/modules/options.nix index f55b398..62b4ae5 100644 --- a/modules/options.nix +++ b/modules/options.nix @@ -189,6 +189,24 @@ in { type = types.str; description = "Hostname of the system."; }; + timeZone = mkOption { + type = types.str; + description = "System time zone"; + default = "America/New_York"; + }; + + # + # System modules + # + battery = mkEnableOption { + description = "Install battery and power system services and programs."; + }; + bluetooth = mkEnableOption { + description = "Install bluetooth system services and programs."; + }; + network = mkEnableOption { + description = "Install networking system services and programs."; + }; minimal = mkEnableOption { description = "Install only required system services, drivers, and programs."; }; |