opentofu incus
Some checks failed
/ check (push) Has been cancelled

This commit is contained in:
iofq 2026-03-21 13:41:50 -05:00
parent e4f5ca2fc9
commit 3d8242b314
22 changed files with 340 additions and 211 deletions

View file

@ -73,4 +73,17 @@ in
./oracle/configuration.nix
];
};
base = inputs.nixpkgs-stable.lib.nixosSystem {
pkgs = pkgs.nixos-stable;
specialArgs = {
inherit inputs system attrs;
host = {
hostName = "nixos";
inherit (attrs) username;
};
};
modules = defaultModules ++ [
./base/configuration.nix
];
};
}