From 2ee209154657e5116e769c992877bd6a03207b2b Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sun, 30 Jun 2024 20:23:18 +0200 Subject: [PATCH] Temporarily disable managing ssh with home-manager --- home/programs/terminal/tools/ssh.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/home/programs/terminal/tools/ssh.nix b/home/programs/terminal/tools/ssh.nix index 149c0fb..76864dd 100644 --- a/home/programs/terminal/tools/ssh.nix +++ b/home/programs/terminal/tools/ssh.nix @@ -1,7 +1,11 @@ { programs = { ssh = { - enable = true; + + # TODO: Enable this after figuring out how to add protected/encrypted blocks here. + # I don't like the idea of expising IPs/hostnames in the config. + # For now, I just persist the .ssh directory, managing stuff manually. + enable = false; hashKnownHosts = true; compression = true; matchBlocks = { @@ -20,8 +24,6 @@ hostname = "gitlab.com"; identityFile = "~/.ssh/git/github-itsdrike"; }; - # TODO: Figure out how to add protected/encrypted blocks here - # I don't like the idea of expising IPs/hostnames in the config }; }; };