diff options
Diffstat (limited to '')
| -rw-r--r-- | options.nix | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/options.nix b/options.nix index d7ee564..61dbc09 100644 --- a/options.nix +++ b/options.nix @@ -19,6 +19,11 @@ with lib; let default = ""; }; + laptop = mkEnableOption { + description = "Flags this monitor to be part of a laptop and not docked."; + default = false; + }; + position = { enabled = mkEnableOption { description = "Enables hardcoded position of the monitor."; @@ -264,6 +269,11 @@ in { description = "NixOS State Version"; default = "26.05"; }; + cores = mkOption { + type = types.int; + description = "Number of logical cores on the system"; + default = 8; + }; # # Packages @@ -292,9 +302,6 @@ in { tpm = mkEnableOption { description = "Enable system TPM"; }; - hardened = mkEnableOption { - description = "Hardened the NixOS system"; - }; minimal = mkEnableOption { description = "Install only required system services, drivers, and programs."; }; @@ -430,7 +437,7 @@ in { lockscreen = mkOption { type = types.str; description = "Path to lockscreen image"; - default = toString ./files/wallpapers/flower.jpg; + default = toString ./files/wallpapers/moran.jpg; }; avatar = mkOption { @@ -473,6 +480,7 @@ in { apps = { alacritty.enable = mkEnableOption "Enable the alacritty terminal."; astal.enable = mkEnableOption "Enable the astal gtk shell."; + kanshi.enable = mkEnableOption "Enable the kanshi service."; kitty.enable = mkEnableOption "Enable the kitty terminal."; mako.enable = mkEnableOption "Enable the mako notification daemon."; hyprlock.enable = mkEnableOption "Enable the hyprlock lockscreen."; @@ -487,7 +495,6 @@ in { # browsers = { firefox.enable = mkEnableOption "Enable the firefox browser."; - zen.enable = mkEnableOption "Enable the zen browser."; }; # |