aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/cli/ssh.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-08 17:02:16 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-08 17:02:16 -0700
commitb3d49dcb70a67c7fc60bfff9914bf0434e2b6390 (patch)
treeceed15cca5f2d63fbb293f312a40349549d8bc30 /users/fcuny/cli/ssh.nix
parentdelete all devel modules (diff)
downloadinfra-b3d49dcb70a67c7fc60bfff9914bf0434e2b6390.tar.gz
delete all CLI modules
Everything is under home/ now
Diffstat (limited to 'users/fcuny/cli/ssh.nix')
-rw-r--r--users/fcuny/cli/ssh.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/users/fcuny/cli/ssh.nix b/users/fcuny/cli/ssh.nix
deleted file mode 100644
index 9708660..0000000
--- a/users/fcuny/cli/ssh.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- programs.ssh = {
- enable = true;
- forwardAgent = true;
- serverAliveInterval = 60;
- controlMaster = "auto";
- controlPersist = "30m";
- matchBlocks = {
- "github.com" = {
- hostname = "github.com";
- user = "git";
- forwardAgent = false;
- extraOptions = { preferredAuthentications = "publickey"; };
- };
- };
- };
-}