From e2f467882f9fd67805b69e5dff6c1652d4c47629 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 4 Mar 2024 15:02:31 -0800 Subject: move all home-manager settings under the profiles --- home/ssh.nix | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 home/ssh.nix (limited to 'home/ssh.nix') diff --git a/home/ssh.nix b/home/ssh.nix deleted file mode 100644 index 47aee8a..0000000 --- a/home/ssh.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ ... }: -{ - programs.ssh = { - enable = true; - forwardAgent = true; - serverAliveInterval = 60; - controlMaster = "auto"; - controlPersist = "30m"; - extraConfig = '' - IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock" - ''; - matchBlocks = { - "github.com" = { - hostname = "github.com"; - user = "git"; - forwardAgent = false; - extraOptions = { preferredAuthentications = "publickey"; }; - }; - }; - }; -} -- cgit 1.4.1