gum.r: disable privkey setting via krebs

manually configure the secrets instead
This commit is contained in:
makefu 2017-10-08 23:14:14 +02:00
parent f7f1d7a446
commit 903a1182b5
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
3 changed files with 5 additions and 2 deletions

View File

@ -580,7 +580,8 @@ with import <stockholm/lib>;
'';
};
};
ssh.privkey.path = <secrets/ssh_host_ed25519_key>;
# configured manually
# ssh.privkey.path = <secrets/ssh_host_ed25519_key>;
ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcxWFEPzke/Sdd9qNX6rSJgXal8NmINYajpFCxXfYdj root@gum";
};
shoney = rec {

View File

@ -81,7 +81,9 @@ in {
];
makefu.dl-dir = "/var/download";
services.openssh.hostKeys = [
{ bits = 4096; path = <secrets/ssh_host_rsa_key>; type = "rsa"; }
{ path = <secrets/ssh_host_ed25519_key>; type = "ed25519"; } ];
###### stable
services.nginx.virtualHosts.cgit.serverAliases = [ "cgit.euer.krebsco.de" ];
krebs.build.host = config.krebs.hosts.gum;