From d94d620d2f393e274676a619b8a56f97f0ed7524 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 26 Jun 2025 13:26:37 -0400 Subject: make system config more modular --- modules/options.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'modules/options.nix') 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."; }; -- cgit v1.2.3-freya