Ssh, change default port to 22

This commit is contained in:
Julia Lange 2025-07-10 12:16:39 -07:00
parent 626ee553e3
commit eb533ddd83

View file

@ -4,7 +4,7 @@
options.sshd = { options.sshd = {
enable = lib.mkEnableOption "Enables ssh daemon"; enable = lib.mkEnableOption "Enables ssh daemon";
port = lib.mkOption { port = lib.mkOption {
default = 922; default = 22;
type = lib.types.port; type = lib.types.port;
}; };
}; };