NixOS 24.05: chore

This commit is contained in:
Daniel Langbein 2024-07-12 23:07:09 +02:00
parent b0f55047cd
commit b52c596292

View File

@ -22,11 +22,11 @@ in
home-manager.users.yoda = { osConfig, config, pkgs, ... }: { home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
# Switching to a higher state version typically requires performing some manual steps, such as data conversion or moving files. # Switching to a higher state version typically requires performing some manual steps, such as data conversion or moving files.
home.stateVersion = "23.11"; home.stateVersion = "24.05";
}; };
home-manager.users.root = { osConfig, config, pkgs, ... }: { home-manager.users.root = { osConfig, config, pkgs, ... }: {
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
# Switching to a higher state version typically requires performing some manual steps, such as data conversion or moving files. # Switching to a higher state version typically requires performing some manual steps, such as data conversion or moving files.
home.stateVersion = "23.11"; home.stateVersion = "24.05";
}; };
} }