diff options
-rw-r--r-- | modules/nixos/sils/nix.nix | 4 | ||||
-rw-r--r-- | modules/nixos/sils/roles.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/nixos/sils/nix.nix b/modules/nixos/sils/nix.nix index 2bc792b..b5d46ba 100644 --- a/modules/nixos/sils/nix.nix +++ b/modules/nixos/sils/nix.nix @@ -5,9 +5,9 @@ lib, ... }: let - cfg = config.sils.nix; + cfg = config.sils.nix-config; in { - options.sils.nix = { + options.sils.nix-config = { enable = lib.mkEnableOption "nix config"; remoteBuild = lib.mkEnableOption "remote builds"; }; diff --git a/modules/nixos/sils/roles.nix b/modules/nixos/sils/roles.nix index 9e8cf3d..73edf85 100644 --- a/modules/nixos/sils/roles.nix +++ b/modules/nixos/sils/roles.nix @@ -5,7 +5,7 @@ in { if roleCmp "laptop" then { basesystem.enable = true; - nix.enable = true; + nix-config.enable = true; plymouth.enable = true; theming.enable = true; } |