Configured SSH Service
Some checks are pending
/ Check NixOS Configuration (push) Waiting to run

This commit is contained in:
Kaybee 2024-11-16 04:29:44 +01:00
parent 74ee7da34b
commit 1a8e0c9a1d

View file

@ -262,6 +262,15 @@
configDir = "/home/kb/.config/syncthing"; configDir = "/home/kb/.config/syncthing";
}; };
# SSH
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
settings.KbdInteractiveAuthentication = false;
ports = [ 4125 ];
openFirewall = true;
};
services.nix-serve = { services.nix-serve = {
enable = true; enable = true;
secretKeyFile = "/var/cache-voloxo-priv-key.pem"; secretKeyFile = "/var/cache-voloxo-priv-key.pem";