From 1796d9efc4cb40f48ae7dcbcb599320b4c019b72 Mon Sep 17 00:00:00 2001 From: Krzysztof Saczuk Date: Sat, 15 Jun 2024 11:10:24 +0200 Subject: [PATCH] chore(services): remove comments from `ssh` service --- modules/services/ssh.nix | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/modules/services/ssh.nix b/modules/services/ssh.nix index 09accfd..51b90e7 100644 --- a/modules/services/ssh.nix +++ b/modules/services/ssh.nix @@ -29,17 +29,6 @@ in { cfg.remotes ); - /* - sops.secrets = { - "ssh_servers/prod-1" = { - owner = username; - }; - "ssh_servers/raspberry-pi" = { - owner = username; - }; - }; - */ - home-manager.users.${username}.programs.ssh = { enable = true; includes = @@ -48,21 +37,6 @@ in { config.sops.secrets."ssh_servers/${remote}".path ) cfg.remotes; - - /* - matchBlocks = { - "prod-1" = { - host = "prod-1"; - hostname = "51.83.129.177"; - user = "zakku"; - }; - "raspberry-pi" = { - host = "raspberry-pi"; - hostname = "192.168.1.11"; - user = "zakku"; - }; - }; - */ }; }; }