init k3s config
All checks were successful
/ check (push) Successful in 3m8s
/ deploy (push) Has been skipped

not finished but a pointer in the right direction
This commit is contained in:
Jermeiah S 2025-07-07 17:22:08 -04:00
parent 6c7781e325
commit 8a2acb343b
No known key found for this signature in database
3 changed files with 76 additions and 2 deletions

View file

@ -0,0 +1,28 @@
{
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";
}