diff --git a/lib/microvms.nix b/lib/microvms.nix index cef59e7..053450d 100644 --- a/lib/microvms.nix +++ b/lib/microvms.nix @@ -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"; diff --git a/modules/opt/k3s-server.nix b/modules/opt/k3s-server.nix index 3278c1b..764d7a6 100644 --- a/modules/opt/k3s-server.nix +++ b/modules/opt/k3s-server.nix @@ -1,6 +1,6 @@ { ... }: { - imports = [ ./k3s-common.nix ]; + # imports = [ ./k3s-common.nix ]; services.k3s.role = "server"; }