workhorse update 20.09 wip
This commit is contained in:
parent
edfd24448b
commit
a87a8a2bd4
4 changed files with 6 additions and 4 deletions
|
@ -55,7 +55,8 @@
|
|||
configuration.init-ssh = {
|
||||
enable = "enabled";
|
||||
kernelModules = [ "r8169" ];
|
||||
hostECDSAKey = <secrets/init-ssh/host_ecdsa_key>;
|
||||
#hostECDSAKey = <secrets/init-ssh/host_ecdsa_key>;
|
||||
hostECDSAKey = <secrets/init-ssh/ssh_host_ed25519_key>;
|
||||
};
|
||||
|
||||
# nix-shell -p speedtest_cli --run speedtest
|
||||
|
|
|
@ -188,7 +188,7 @@ in {
|
|||
# };
|
||||
#});
|
||||
autoUpdateApps.enable = true;
|
||||
nginx.enable = true;
|
||||
#nginx.enable = true;
|
||||
hostName = "nextcloud.ingolf-wagner.de";
|
||||
#logLevel = 0;
|
||||
https = true;
|
||||
|
|
|
@ -6,7 +6,7 @@ let
|
|||
workhorse = {
|
||||
onionId = fileContents <common_secrets/onion/workhorse>;
|
||||
publicKey =
|
||||
"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBB+sHmukNa2TmtBDCqN+LVaYblvHztD/ziK2cbKR8dEHztF0YBS60MHMpbGPOII5NVMUY6Z2OHFBQi9X6PG1YBY=";
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII/I4JBA1HHTH2xsrEM7xtxkhRDE42lZcBrdBvN46WTx";
|
||||
};
|
||||
porani = {
|
||||
onionId = fileContents <common_secrets/onion/porani>;
|
||||
|
|
|
@ -93,7 +93,8 @@ in {
|
|||
port = cfg.port;
|
||||
};
|
||||
boot.initrd.availableKernelModules = cfg.kernelModules;
|
||||
boot.initrd.network.ssh.hostECDSAKey = cfg.hostECDSAKey;
|
||||
#boot.initrd.network.ssh.hostECDSAKey = cfg.hostECDSAKey;
|
||||
boot.initrd.network.ssh.hostKeys = [ cfg.hostECDSAKey ];
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue