tadpole: Add WHIB backend

This commit is contained in:
Alexander Heldt
2025-01-02 19:32:59 +01:00
parent 349315ec47
commit 6ca1c92a81
4 changed files with 96 additions and 9 deletions

View File

@@ -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