From cb64146d729d2447996a9ed7b0141b897ef3920d Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Fri, 3 Jan 2025 10:58:38 +0100 Subject: [PATCH] tadpole: Add `WHIB` service module import --- flake.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/flake.nix b/flake.nix index 9669676..f4e8e0b 100644 --- a/flake.nix +++ b/flake.nix @@ -71,16 +71,21 @@ ]; }; - tadpole = inputs.nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - specialArgs = { - inherit inputs; + tadpole = + let + system = "x86_64-linux"; + in + inputs.nixpkgs.lib.nixosSystem { + inherit system; + specialArgs = { + inherit inputs; + }; + modules = [ + ./hosts/tadpole/configuration.nix + ./hosts/tadpole/home.nix + inputs.whib-backend.nixosModules.${system}.default + ]; }; - modules = [ - ./hosts/tadpole/configuration.nix - ./hosts/tadpole/home.nix - ]; - }; test-vm = let