This commit is contained in:
Kiara Grouwstra 2025-08-18 12:47:05 +02:00
parent c603ef795b
commit 84099f9ccf
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -42,6 +42,18 @@ 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 =
let
keys = import ../../../keys;
in
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 {