Add self to input, need to build base-lxc with infra-core keys

This commit is contained in:
pazpi 2024-12-12 21:48:51 +01:00
parent 28b0ce3b2f
commit 991b9d4b4f

View file

@ -5,6 +5,7 @@
agenix, agenix,
home-manager, home-manager,
lix-module, lix-module,
self,
... ...
}: }:
let let
@ -63,6 +64,9 @@ in
./base-lxc.nix ./base-lxc.nix
agenix.nixosModules.default agenix.nixosModules.default
]; ];
specialArgs = {
inherit self;
};
}; };
arr = nixpkgs.lib.nixosSystem { arr = nixpkgs.lib.nixosSystem {
@ -109,4 +113,15 @@ in
# specialArgs = { }; # specialArgs = { };
}; };
vaultwarden = nixpkgs.lib.nixosSystem {
pkgs = pkgs "x86_64-linux";
modules = [
myModule
proxmoxModule
./nextcloud
agenix.nixosModules.default
];
# specialArgs = { };
};
} }