nixos/release.nix: use latest stateVersion for the jobset

Ideally we'd want to build _all_ the stateVersions, but this is probably still better?
This commit is contained in:
K900 2023-10-27 11:28:25 +03:00
parent 0d4a1a205f
commit 95b08fc3d0

View File

@ -398,7 +398,7 @@ in rec {
modules = singleton ({ ... }:
{ fileSystems."/".device = mkDefault "/dev/sda1";
boot.loader.grub.device = mkDefault "/dev/sda";
system.stateVersion = mkDefault "18.03";
system.stateVersion = mkDefault lib.trivial.release;
});
}).config.system.build.toplevel;
preferLocalBuild = true;