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
main
Nicolas Berbiche 2 years ago
parent 9d369c75ce
commit 1fa809f783
No known key found for this signature in database
GPG Key ID: FA5696EDF35DA0B6
  1. 4
      nix-darwin/default.nix

@ -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;

Loading…
Cancel
Save