From 914909009c209f7a7ecef7e51dd906ecb5d96d23 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 9 Sep 2025 15:22:33 +0200 Subject: [PATCH] Cleanup Update inputs Update refs --- flake.nix | 1 + hm/modules/ssh.nix | 8 +++----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index b0444ac..8c62504 100644 --- a/flake.nix +++ b/flake.nix @@ -469,3 +469,4 @@ }; }; } + diff --git a/hm/modules/ssh.nix b/hm/modules/ssh.nix index 737c657..c129f4f 100644 --- a/hm/modules/ssh.nix +++ b/hm/modules/ssh.nix @@ -1,11 +1,9 @@ { programs.ssh = { enable = true; - matchBlocks = { - "*" = { - identityFile = "~/.ssh/id_ed25519"; - compression = true; - }; + matchBlocks."*" = { + identityFile = "~/.ssh/id_ed25519"; + compression = true; }; }; }