diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-05-16 16:58:51 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-05-16 16:58:51 -0700 |
| commit | 5264ba4eedd88ab68bd67c482bbe4398ad9385b5 (patch) | |
| tree | 78d1c720ee40d61e345307b922cd66ffbfa3f3de /systems/x86_64-linux/copenhagen | |
| parent | 3c070bcf4fdd913644bd95aad2dc9b43cbd892eb (diff) | |
copenhagen: allow ssh on port 22
Diffstat (limited to 'systems/x86_64-linux/copenhagen')
| -rw-r--r-- | systems/x86_64-linux/copenhagen/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systems/x86_64-linux/copenhagen/default.nix b/systems/x86_64-linux/copenhagen/default.nix index 8fcda09..7b342a1 100644 --- a/systems/x86_64-linux/copenhagen/default.nix +++ b/systems/x86_64-linux/copenhagen/default.nix @@ -20,7 +20,7 @@ with lib; with lib.${namespace}; { services = { ssh = { enable = true; - port = 42069; + ports = [ 22 42069 ]; }; web = { |