From 991b9d4b4f80bc76f55f7d7bf8b3d7af50273d63 Mon Sep 17 00:00:00 2001 From: pazpi Date: Thu, 12 Dec 2024 21:48:51 +0100 Subject: [PATCH] Add self to input, need to build base-lxc with infra-core keys --- hosts/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/hosts/default.nix b/hosts/default.nix index 1c7f3c3..b0a73d6 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -5,6 +5,7 @@ agenix, home-manager, lix-module, + self, ... }: let @@ -63,6 +64,9 @@ in ./base-lxc.nix agenix.nixosModules.default ]; + specialArgs = { + inherit self; + }; }; arr = nixpkgs.lib.nixosSystem { @@ -109,4 +113,15 @@ in # specialArgs = { }; }; + vaultwarden = nixpkgs.lib.nixosSystem { + pkgs = pkgs "x86_64-linux"; + modules = [ + myModule + proxmoxModule + ./nextcloud + agenix.nixosModules.default + ]; + # specialArgs = { }; + }; + }