From 7c3b6cdf30a78a7c6669d38a74e16c30a5d341c9 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 9 Jun 2024 11:34:55 -0400 Subject: [PATCH] updated ssh settings --- systems/bob/configuration.nix | 2 ++ systems/rhapsody-in-green/configuration.nix | 2 ++ users/richie/home/sshconfig.nix | 6 ++++++ 3 files changed, 10 insertions(+) diff --git a/systems/bob/configuration.nix b/systems/bob/configuration.nix index 25b5ee6..ee15aa7 100644 --- a/systems/bob/configuration.nix +++ b/systems/bob/configuration.nix @@ -40,6 +40,8 @@ }; }; + openssh.ports = [ 262 ]; + printing.enable = true; pipewire = { diff --git a/systems/rhapsody-in-green/configuration.nix b/systems/rhapsody-in-green/configuration.nix index 256ead9..eb337e5 100644 --- a/systems/rhapsody-in-green/configuration.nix +++ b/systems/rhapsody-in-green/configuration.nix @@ -41,6 +41,8 @@ }; }; + openssh.ports = [ 922 ]; + printing.enable = true; pipewire = { diff --git a/users/richie/home/sshconfig.nix b/users/richie/home/sshconfig.nix index c7f3ea6..83d935a 100644 --- a/users/richie/home/sshconfig.nix +++ b/users/richie/home/sshconfig.nix @@ -21,6 +21,12 @@ identityFile = "~/.ssh/id_ed25519"; port = 262; }; + rhapsody-in-green = { + hostname = "192.168.90.221"; + user = "richie"; + identityFile = "~/.ssh/id_ed25519"; + port = 922; + }; }; }; }