diff options
author | Maximilien Richer <me@mricher.fr> | 2025-02-10 11:06:24 +0100 |
---|---|---|
committer | Maximilien Richer <me@mricher.fr> | 2025-02-10 11:06:24 +0100 |
commit | 38929646bfd35568000d052277e37ca66011bc99 (patch) | |
tree | a728ef9c568e514f5be6e7262d9d1db194b40567 /nix/configuration.nix | |
parent | 43c46ef04109e926d3bae1ccb0f96d8d271677f2 (diff) | |
download | nixcfg-38929646bfd35568000d052277e37ca66011bc99.tar.gz nixcfg-38929646bfd35568000d052277e37ca66011bc99.zip |
Move ssh to port 110, update nomad to 1.7
Diffstat (limited to 'nix/configuration.nix')
-rw-r--r-- | nix/configuration.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/configuration.nix b/nix/configuration.nix index 68751a2..4eb701b 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -77,6 +77,7 @@ SystemMaxUse=1G # Enable the OpenSSH daemon and disable password login. services.openssh.enable = true; services.openssh.settings.PasswordAuthentication = false; + services.openssh.ports = [ 110 ]; virtualisation.docker = { enable = true; |