summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/utils
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-09 08:41:43 -0400
committertriethyl <triethylammonium@pm.me>2025-09-09 08:41:43 -0400
commit5732331cdd7d2b5049b6ea8e61d94e6933551720 (patch)
treea1038e4bd12edb57af30e3b9ffde5e8a5d1a80f0 /home-manager/features/cli/utils
parent956030403a24f96a26520dbc05001efaa74f8865 (diff)
home-manager: removed matchBlocks from ssh feature
Diffstat (limited to 'home-manager/features/cli/utils')
-rw-r--r--home-manager/features/cli/utils/ssh.nix14
1 files changed, 1 insertions, 13 deletions
diff --git a/home-manager/features/cli/utils/ssh.nix b/home-manager/features/cli/utils/ssh.nix
index f10d0b2..5579cc0 100644
--- a/home-manager/features/cli/utils/ssh.nix
+++ b/home-manager/features/cli/utils/ssh.nix
@@ -3,18 +3,6 @@
in {
options.features.cli.utils.ssh.enable = lib.mkEnableOption "ssh";
config = lib.mkIf cfg.enable {
- programs.ssh = {
- enable = true;
- matchBlocks = {
- "culsans.site" = {
- hostname = "culsans.site";
- user = "server";
- port = 2200;
- };
- "git.culsans.site" = {
- hostname = "culsans.site";
- };
- };
- };
+ programs.ssh.enable = true;
};
}