Ssh, change default port to 22

This commit is contained in:
Julia Lange 2025-07-10 12:16:39 -07:00
parent 357dd65441
commit f648219d12
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto

View file

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