All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 18s
16 lines
306 B
Nix
16 lines
306 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
../modules/k8s-cluster-settings.nix
|
|
../modules/k8s-common.nix
|
|
../modules/k8s-control-plane.nix
|
|
]
|
|
++ lib.optional (builtins.pathExists ./hardware/cp-3.nix) ./hardware/cp-3.nix;
|
|
|
|
networking.hostName = "cp-3";
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|