infrastructure/hosts/cesium/services/ssh.nix
Laureηt c70e047c9f
🚚 (cesium) rename <thing>/default.nix to thing.nix
 (cesium) add back gatus service
2024-10-06 16:24:21 +02:00

8 lines
122 B
Nix

{...}: {
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
ports = [624];
};
}