diff options
Diffstat (limited to 'installer/default.nix')
-rw-r--r-- | installer/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/installer/default.nix b/installer/default.nix index bf09c8d8..d77266ca 100644 --- a/installer/default.nix +++ b/installer/default.nix | |||
@@ -1,4 +1,4 @@ | |||
1 | { flake, pkgs, ... }: { | 1 | { flake, config, pkgs, ... }: { |
2 | imports = with flake.nixosModules.systemProfiles; [ | 2 | imports = with flake.nixosModules.systemProfiles; [ |
3 | default-locale zfs networkmanager openssh | 3 | default-locale zfs networkmanager openssh |
4 | ]; | 4 | ]; |
@@ -28,5 +28,7 @@ | |||
28 | ]; | 28 | ]; |
29 | 29 | ||
30 | zramSwap.enable = true; | 30 | zramSwap.enable = true; |
31 | |||
32 | system.stateVersion = config.system.nixos.release; # No state in installer | ||
31 | }; | 33 | }; |
32 | } | 34 | } |