1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

home-environment: add home.extraDependencies

This should have the same effect `system.extraDependencies` has in
nixpkgs: adds paths to the runtime closure without installing them
anywhere.

This is useful for preventing garbage collection of packages that are
expensive to rebuild. For example:

- nixpkgs itself suggests using this for `factorio.src`, which requires
  a token to fetch.
- we can use it to address #6157: avoid needlessly rebuilding
  completions for packages that do not have any.

The implementation mirrors nixpkgs: add a file containing the store
paths we want to keep around to the home-manager-generation derivation.
This commit is contained in:
Marien Zwart 2025-03-02 21:09:59 +11:00
parent 9172a6f956
commit c3a1b97a1d
No known key found for this signature in database

View file

@ -367,6 +367,15 @@ in
'';
};
home.extraDependencies = mkOption {
type = types.listOf types.pathInStore;
default = [];
description = ''
A list of paths that should be included in the home
closure but generally not visible.
'';
};
home.path = mkOption {
internal = true;
description = "The derivation installing the user packages.";
@ -773,6 +782,8 @@ in
"home-manager-generation"
{
preferLocalBuild = true;
passAsFile = [ "extraDependencies" ];
inherit (config.home) extraDependencies;
}
''
mkdir -p $out
@ -790,6 +801,8 @@ in
ln -s ${config.home-files} $out/home-files
ln -s ${cfg.path} $out/home-path
cp "$extraDependenciesPath" "$out/extra-dependencies"
${cfg.extraBuilderCommands}
'';