fixed inputs for sops

This commit is contained in:
John Lancaster
2025-07-07 00:31:27 -05:00
parent 7eb20ee07d
commit 5f3d3a224a

View File

@@ -34,7 +34,7 @@
}; };
mkhomeManagerModules = config: [ mkhomeManagerModules = config: [
self.homeManagerModules.default (self.homeManagerModules.default inputs)
# { inherit (config) extraImports; } # { inherit (config) extraImports; }
{ {
user = config.user; user = config.user;
@@ -52,7 +52,9 @@
{ {
lib = { inherit mkhomeManagerModules; }; lib = { inherit mkhomeManagerModules; };
homeManagerModules.default = { ... }: { imports = [ ./homeManagerModules ]; }; homeManagerModules.default = inputs: {
imports = [ ./homeManagerModules ];
};
nixosModules.default = { config, ... }: { nixosModules.default = { config, ... }: {
imports = [ imports = [