This commit is contained in:
Kiara Grouwstra 2025-08-24 18:27:19 +02:00
parent f233b3c4a5
commit 154dea8ff1
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -47,7 +47,12 @@ in
## Test VMs don't have a bootloader by default.
boot.loader.grub.enable = false;
users.users.root.openssh.authorizedKeys.keys =
users.mutableUsers = false;
users.users.root = {
password = "password";
hashedPassword = null;
hashedPasswordFile = null;
openssh.authorizedKeys.keys =
let
keys = import ../../../keys;
in
@ -58,6 +63,7 @@ in
# allow continuous deployment access
keys.cd
];
};
}
(mkIf config.enableAcme {