Update NixOS version

This commit is contained in:
iFargle 2023-06-29 21:25:10 +09:00
parent d021c1b7c5
commit aefdbfad26
2 changed files with 2 additions and 2 deletions

View file

@ -176,5 +176,5 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "unstable"; # Did you read the comment?
system.stateVersion = "23.05"; # Did you read the comment?
}

View file

@ -9,7 +9,7 @@ in
home-manager.users.albert = {
/* The home.stateVersion option does not have a default and must be set */
home.stateVersion = "unstable";
home.stateVersion = "23.05";
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
};
}