home-manager: use shellHook to install
This changes the installation command from
nix-shell $HM_PATH -A install --run 'home-manager switch'
to
nix-shell $HM_PATH -A install
The added shell hook will print some useful information and run
`home-manager switch`.
This commit is contained in:
parent
a1e36a9a37
commit
06d4f39e7b
3 changed files with 42 additions and 7 deletions
|
|
@ -6,9 +6,7 @@ rec {
|
|||
path = toString ./.;
|
||||
};
|
||||
|
||||
install =
|
||||
pkgs.runCommand
|
||||
"home-manager-install"
|
||||
{ propagatedBuildInputs = [ home-manager ]; }
|
||||
"";
|
||||
install = import ./home-manager/install.nix {
|
||||
inherit home-manager pkgs;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue