Start testing k3s

This commit is contained in:
2025-12-07 21:50:44 -08:00
parent 81d7174bdf
commit f88d999429
6 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services.k3s = {
enable = true;
role = "server";
token = "forinitialtestingonly";
clusterInit = true;
};
}