infrastructure/hosts/cesium/services/ssh/default.nix
2024-01-12 17:02:47 +01:00

8 lines
122 B
Nix

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