🔧 (hydrogen/sshd) change port for ~securitay

This commit is contained in:
Laureηt 2023-06-25 21:00:21 +02:00
parent 2edb21185f
commit 78b864ba9f
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI
2 changed files with 2 additions and 1 deletions

View file

@ -7,5 +7,5 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?
imports = [ ./networking ./packages ./users ]; imports = [ ./networking ./packages ./ssh ./users ];
} }

View file

@ -0,0 +1 @@
{ ... }: { services.openssh.ports = [ 624 ]; }