1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-23 03:29:45 +01:00

Update nixos.md

Enhance comment for home.stateVersion option (see issue #5794)
This commit is contained in:
Jérémy Garniaux 2024-11-21 15:27:20 +01:00 committed by GitHub
parent a46e702093
commit caee1e1731
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,8 +42,11 @@ home-manager.users.eve = { pkgs, ... }: {
home.packages = [ pkgs.atool pkgs.httpie ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
# This value determines the Home Manager release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. The state version is required and should
# stay at the version you originally installed. More documentation for
# this option is available at https://nixos.org/nixos/options.html.
home.stateVersion = "24.05";
};
```