This commit is contained in:
Kiara Grouwstra 2025-08-24 18:27:19 +02:00
parent 605d350d94
commit 1403677aa5
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -49,17 +49,23 @@ in
## Test VMs don't have a bootloader by default. ## Test VMs don't have a bootloader by default.
boot.loader.grub.enable = false; boot.loader.grub.enable = false;
users.users.root.openssh.authorizedKeys.keys = users.mutableUsers = false;
let users.users.root = {
keys = import ../../../keys; password = "password";
in hashedPassword = null;
lib.attrValues keys.contributors hashedPasswordFile = null;
++ [ openssh.authorizedKeys.keys =
# allow our panel vm access to the test machines let
keys.panel keys = import ../../../keys;
# allow continuous deployment access in
keys.cd lib.attrValues keys.contributors
]; ++ [
# allow our panel vm access to the test machines
keys.panel
# allow continuous deployment access
keys.cd
];
};
} }
(mkIf config.enableAcme { (mkIf config.enableAcme {