test disabling k3s server

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-05-25 22:16:13 -04:00
parent 23fc7d2667
commit 327895435b
No known key found for this signature in database
GPG Key ID: 1FACF4075E3212F7
2 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,8 @@ rec {
# It is highly recommended to share the host's nix-store
# with the VMs to prevent building huge images.
system.stateVersion = "24.05";
environment.etc."machine-id" = {
mode = "0644";
text = machine-id + "\n";

View File

@ -1,6 +1,6 @@
{ ... }:
{
imports = [ ./k3s-common.nix ];
# imports = [ ./k3s-common.nix ];
services.k3s.role = "server";
}