Nixos-Configuration/configurations/nixos/kube-main-tofu/default.nix
Jermeiah S 8a2acb343b
All checks were successful
/ check (push) Successful in 3m8s
/ deploy (push) Has been skipped
init k3s config
not finished but a pointer in the right direction
2025-07-07 17:22:08 -04:00

28 lines
361 B
Nix

{
flake,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
];
deploy = {
enable = false;
};
kub = {
enable = true;
role = "server";
};
networking = {
hostName = "kube-main-tofu";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}