From fc1813564cbf2511e363aa22d189db477598c2f6 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Sat, 6 Jan 2024 17:16:13 +0100 Subject: [PATCH] fix: update test-vm --- test-vm/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test-vm/configuration.nix b/test-vm/configuration.nix index da35146..a33e397 100644 --- a/test-vm/configuration.nix +++ b/test-vm/configuration.nix @@ -9,7 +9,7 @@ config = { services.qemuGuest.enable = true; - system.stateVersion = "23.05"; + system.stateVersion = "23.11"; fileSystems."/" = { device = "/dev/disk/by-label/nixos"; @@ -50,6 +50,7 @@ users.extraUsers.root.password = ""; users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMNeQYLFauAbzDyIbKC86NUh9yZfiyBm/BtIdkcpZnSU" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPAsRdVYK0077cdtavmrRr6akrI68T1EDY4Hfv4+W86J teutat3s@ryzensun" ]; users.mutableUsers = false; networking.firewall.enable = false;