tangled
alpha
login
or
join now
anirudh.fi
/
dotfiles
5
fork
atom
my nix dotfiles
5
fork
atom
overview
issues
pulls
pipelines
nix/sini: setup authorized keys for initrd ssh
anirudh.fi
2 years ago
3962a87f
5674e477
+5
-2
1 changed file
expand all
collapse all
unified
split
hosts
sini
configuration.nix
+5
-2
hosts/sini/configuration.nix
···
44
44
ssh = {
45
45
enable = true;
46
46
port = 22;
47
47
-
authorizedKeys = [ "ssh-rsa AAAAyourpublic-key-here..." ];
48
48
-
hostKeys = [ "/etc/secrets/initrd/ssh_host_rsa_key" ];
47
47
+
authorizedKeys = [
48
48
+
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJPYX06+qKr9IHWfkgCtHbExoBOOwS/+iAWbog9bAdk icy@wyndle"
49
49
+
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIlcByNC93n6dH41uxdLvbtf8XfKF0hoN35548PRga3M icy@kvothe"
50
50
+
];
51
51
+
hostKeys = [ "/etc/secrets/initrd/ssh_host_ed25519_key" ];
49
52
};
50
53
};
51
54
};