modules: home: forward inputs to home-manager

This will be useful if and when I end up adding inputs with home-manager
modules defined.
This commit is contained in:
Bruno BELANYI 2021-10-22 13:06:50 +02:00
parent 36d6b2828e
commit 9b184f94ac
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@ in
# Nix Flakes compatibility
useGlobalPkgs = true;
useUserPackages = true;
# Forward inputs to home-manager configuration
extraSpecialArgs = {
inherit inputs;
};
};
};
}