mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 17:50:48 +03:00
15 lines
473 B
Nix
15 lines
473 B
Nix
# Do not copy this! It is insecure. This is only okay because we are testing.
|
|
{
|
|
system.activationScripts.agenixInstall.deps = ["installSSHHostKeys"];
|
|
|
|
system.activationScripts.installSSHHostKeys.text = ''
|
|
mkdir -p /etc/ssh
|
|
(umask u=rw,g=r,o=r; cp ${../example_keys/system1.pub} /etc/ssh/ssh_host_ed25519_key.pub)
|
|
(
|
|
umask u=rw,g=,o=
|
|
cp ${../example_keys/system1} /etc/ssh/ssh_host_ed25519_key
|
|
touch /etc/ssh/ssh_host_rsa_key
|
|
)
|
|
|
|
'';
|
|
}
|