From 225ea8d8a8053fe80f4a01f0da9f546482f53243 Mon Sep 17 00:00:00 2001 From: rycee Date: Tue, 17 Oct 2023 06:02:45 +0000 Subject: [PATCH] deploy: f6bb5c297372719a6ea1c369b2b1a1aa10580452 --- index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/index.html b/index.html index 679992343..975eee785 100644 --- a/index.html +++ b/index.html @@ -79,6 +79,10 @@ set that maps user names to Home Manager configurations.

For example, a Ni 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. + system.stateVersion = "23.05"; };

and after a sudo nixos-rebuild switch the user eve’s environment should include a basic Bash configuration and the packages atool and httpie.

Note

If nixos-rebuild switch does not result in the environment you expect, you can take a look at the output of the Home Manager activation script output using

$ systemctl status "home-manager-$USER.service"

If you do not plan on having Home Manager manage your shell @@ -113,6 +117,10 @@ that maps user names to Home Manager configurations.

For example, a nix-da 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. + system.stateVersion = "23.05"; };

and after a darwin-rebuild switch the user eve’s environment should include a basic Bash configuration and the packages atool and httpie.

If you do not plan on having Home Manager manage your shell