Compare commits

...

1 commit

Author SHA1 Message Date
4f1c8d4e7f
Ssh, change default port to 22
To preserve current connections Onizuka's port was manually reverted to
the old 922 default, with the intention to follow that
2025-07-10 12:16:39 -07:00
2 changed files with 5 additions and 2 deletions

View file

@ -12,7 +12,10 @@
system.timezone = "America/Los_Angeles";
system.users.bigWheels = [ "pan" ];
sshd.enable = true;
sshd = {
enable = true;
port = 922;
}
tailscale.enable = true;
tuigreet.enable = true;

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;
};
};