summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-05-10 14:23:04 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2022-05-10 14:23:04 +0200
commit4f08f21232e31a31d76752f010c7b43b8f5e608f (patch)
tree17e4169a3c9c944876d1efb1d18d1dda402538b1 /installer
parent14ae91f05b3e165fa39bdde619ca1fd6a2cfb49d (diff)
downloadnixos-4f08f21232e31a31d76752f010c7b43b8f5e608f.tar
nixos-4f08f21232e31a31d76752f010c7b43b8f5e608f.tar.gz
nixos-4f08f21232e31a31d76752f010c7b43b8f5e608f.tar.bz2
nixos-4f08f21232e31a31d76752f010c7b43b8f5e608f.tar.xz
nixos-4f08f21232e31a31d76752f010c7b43b8f5e608f.zip
bump
Diffstat (limited to 'installer')
-rw-r--r--installer/default.nix4
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}