1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat: allow specifying host pubkey as string

This commit is contained in:
oddlama 2023-05-21 16:01:49 +02:00
parent cbcd3c943b
commit a0d22b8be1
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
4 changed files with 16 additions and 13 deletions

View file

@ -39,4 +39,14 @@
test = defineVm 11;
#hi = defineVm 12;
};
microvm.vms.test.config = {
imports = [
../common/core
../../users/root
];
home-manager.users.root.home.minimal = true;
rekey.hostPubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBXXjI6uB26xOF0DPy/QyLladoGIKfAtofyqPgIkCH/g";
};
}