15 lines
264 B
Nix
15 lines
264 B
Nix
|
|
{ lib, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports =
|
||
|
|
[
|
||
|
|
../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";
|
||
|
|
}
|