darwin: add Nix package to activation $PATH

The fix for https://github.com/nix-community/home-manager/issues/2178
did not apply the patch to nix-darwin too.

See: https://github.com/nix-community/home-manager/issues/2178#issuecomment-1029015498
This commit is contained in:
Nicolas Berbiche 2022-02-03 15:24:31 -05:00
parent 9d369c75ce
commit 1fa809f783
No known key found for this signature in database
GPG Key ID: FA5696EDF35DA0B6
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ let
home.username = config.users.users.${name}.name;
home.homeDirectory = config.users.users.${name}.home;
# Make activation script use same version of Nix as system as a whole.
# This avoids problems with Nix not being in PATH.
home.extraActivationPath = [ config.nix.package ];
};
})
] ++ cfg.sharedModules;