From caee1e17314400ede90d6eb3e3f1c1c3da301556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Garniaux?= Date: Thu, 21 Nov 2024 15:27:20 +0100 Subject: [PATCH] Update nixos.md Enhance comment for home.stateVersion option (see issue #5794) --- docs/manual/installation/nixos.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/manual/installation/nixos.md b/docs/manual/installation/nixos.md index d432a54be..1ce8eb06a 100644 --- a/docs/manual/installation/nixos.md +++ b/docs/manual/installation/nixos.md @@ -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"; }; ```