my nix dotfiles

nix/sini: setup authorized keys for initrd ssh

+5 -2
+5 -2
hosts/sini/configuration.nix
··· 44 44 ssh = { 45 45 enable = true; 46 46 port = 22; 47 - authorizedKeys = [ "ssh-rsa AAAAyourpublic-key-here..." ]; 48 - hostKeys = [ "/etc/secrets/initrd/ssh_host_rsa_key" ]; 47 + authorizedKeys = [ 48 + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJPYX06+qKr9IHWfkgCtHbExoBOOwS/+iAWbog9bAdk icy@wyndle" 49 + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIlcByNC93n6dH41uxdLvbtf8XfKF0hoN35548PRga3M icy@kvothe" 50 + ]; 51 + hostKeys = [ "/etc/secrets/initrd/ssh_host_ed25519_key" ]; 49 52 }; 50 53 }; 51 54 };