diff options
Diffstat (limited to 'features/user/cli/utils/ssh.nix')
| -rw-r--r-- | features/user/cli/utils/ssh.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/features/user/cli/utils/ssh.nix b/features/user/cli/utils/ssh.nix deleted file mode 100644 index f10d0b2..0000000 --- a/features/user/cli/utils/ssh.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ config, lib, ... }: let - cfg = config.features.cli.utils.ssh; -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"; - }; - }; - }; - }; -} |
