oracle2
Some checks failed
/ check (push) Failing after 2m38s

This commit is contained in:
iofq 2025-09-27 12:14:40 -05:00
parent fc85515fb8
commit 1e236f8f71
10 changed files with 157 additions and 26 deletions

View file

@ -41,7 +41,7 @@ in
./consensus/configuration.nix
];
};
oracle = inputs.nixpkgs.lib.nixosSystem {
oracle1 = inputs.nixpkgs.lib.nixosSystem {
inherit pkgs;
specialArgs = {
inherit inputs system attrs;
@ -52,6 +52,21 @@ in
};
modules = defaultModules ++ [
./oracle/configuration.nix
./oracle/forgejo.nix
];
};
oracle2 = inputs.nixpkgs.lib.nixosSystem {
inherit pkgs;
specialArgs = {
inherit inputs system attrs;
host = {
hostName = "oracle2";
inherit (attrs) username;
};
};
modules = defaultModules ++ [
./oracle/configuration.nix
./oracle/forgejo-runner.nix
];
};
}