Commit 955a5f6
Changed files (1)
modules
flake
gen-configuration
modules/flake/gen-configuration/nixos.nix
@@ -27,6 +27,11 @@ in {
value = withSystem config.flake.meta.host.hosts.${name}.system (
{system, ...}:
inputs.nixpkgs.lib.nixosSystem {
+ # Fix vaultix error: attribute 'inputs' missing
+ # This is an anti-pattern of Dendritic Pattern
+ # I don't like this, but I don't see another way
+ specialArgs = {inherit (inputs) self;};
+
modules = [
module
{