From 68d03fe362b7e0df11662d8d6a1e01eac0bfae77 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Wed, 17 Sep 2025 22:07:16 -0400 Subject: refactor: remove modules folder, fully split home and system modules --- home/ssh/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'home/ssh') diff --git a/home/ssh/default.nix b/home/ssh/default.nix index c884bf4..efee063 100644 --- a/home/ssh/default.nix +++ b/home/ssh/default.nix @@ -4,12 +4,10 @@ ... }: { # ssh config - home-manager.users.${config.user} = { - programs.ssh = { - enable = true; - enableDefaultConfig = false; - matchBlocks."*" = {}; - extraConfig = lib.fileContents ./config; - }; + programs.ssh = { + enable = true; + enableDefaultConfig = false; + matchBlocks."*" = {}; + extraConfig = lib.fileContents ./config; }; } -- cgit v1.2.3-freya