From 0c327b20ea4694a5f672085cab902b355b374a91 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Tue, 4 Feb 2025 19:59:04 +0000 Subject: [PATCH 1/2] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'birdsong': 'git+https://git.qenya.tel/qenya/birdsong?ref=main&rev=4e461f83a84aba32bdf640163375f1e31b699111' (2025-01-21) → 'git+https://git.qenya.tel/qenya/birdsong?ref=main&rev=007130e869f1223713d588ba0f125c586ca13623' (2025-02-04) --- flake.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index f9d3608..05f0477 100644 --- a/flake.lock +++ b/flake.lock @@ -46,11 +46,11 @@ }, "birdsong": { "locked": { - "lastModified": 1737470105, - "narHash": "sha256-m5wsHkRDsilv6hVYL4BLWM+Gn8MsQwvxIvhC18FH7Lo=", + "lastModified": 1738699106, + "narHash": "sha256-pAe4pHn9OmVWBHdZOMQBO21mHnshOxQOaLu/mKycM6Q=", "ref": "main", - "rev": "4e461f83a84aba32bdf640163375f1e31b699111", - "revCount": 19, + "rev": "007130e869f1223713d588ba0f125c586ca13623", + "revCount": 20, "type": "git", "url": "https://git.qenya.tel/qenya/birdsong" }, From 868ffd64e4a685d4e8dab3e866c8b3a146e13cd7 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Wed, 5 Feb 2025 19:13:10 +0000 Subject: [PATCH 2/2] ssh: rename from openssh, update nixos module name --- common/default.nix | 4 ++-- common/{openssh.nix => ssh.nix} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename common/{openssh.nix => ssh.nix} (85%) diff --git a/common/default.nix b/common/default.nix index 81a7423..dd503b1 100644 --- a/common/default.nix +++ b/common/default.nix @@ -8,10 +8,10 @@ ./misc.nix ./nginx.nix ./nix.nix - ./openssh.nix ./packages.nix ./sanoid.nix ./security.nix + ./ssh.nix ./steam.nix ]; -} \ No newline at end of file +} diff --git a/common/openssh.nix b/common/ssh.nix similarity index 85% rename from common/openssh.nix rename to common/ssh.nix index 195277e..43f9e30 100644 --- a/common/openssh.nix +++ b/common/ssh.nix @@ -1,11 +1,11 @@ { config, lib, pkgs, ... }: { - services.openssh = { + programs.ssh = { enable = true; settings = { PasswordAuthentication = false; PermitRootLogin = "no"; }; }; -} \ No newline at end of file +}