From 9b184f94ac69c2810f7ff30f5f694f200367ca9d Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 22 Oct 2021 13:06:50 +0200 Subject: [PATCH] modules: home: forward inputs to home-manager This will be useful if and when I end up adding inputs with home-manager modules defined. --- modules/home/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/default.nix b/modules/home/default.nix index 4745c0c..a287f35 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -19,6 +19,11 @@ in # Nix Flakes compatibility useGlobalPkgs = true; useUserPackages = true; + + # Forward inputs to home-manager configuration + extraSpecialArgs = { + inherit inputs; + }; }; }; }