Start testing k3s

This commit is contained in:
2025-12-07 21:50:44 -08:00
parent b16e7664b0
commit 3ceb749239
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;
};
}