Files
nixos-configs/modules/application-groups/k3s-primary.nix
2025-12-10 10:17:44 -08:00

10 lines
152 B
Nix

{ config, pkgs, ... }:
{
services.k3s = {
enable = true;
role = "server";
token = "forinitialtestingonly";
clusterInit = true;
};
}