fix(users/multi/whitby): fix home-manager configuration on whitby.

"let pkgs = import <nixpkgs> {}; in pkgs.home-manager.src" evaluates to
the source derivation for home-manager, however home-manager's configuration
machinery expects to be passed the store path of this derivation instead of the
derivation object itself.

Change-Id: I6b0ba3efaff9d080900349529576443192b058e9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2121
Reviewed-by: multi <depot@in-addr.xyz>
Tested-by: BuildkiteCI
This commit is contained in:
multi 2020-11-21 23:34:19 +00:00
parent 5a00e58904
commit 7dcd518c35

View file

@ -11,7 +11,7 @@ in
programs = {
home-manager = {
enable = true;
path = pkgs.home-manager.src;
path = toString pkgs.home-manager.src;
};
bash = {