diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-12-08 14:59:03 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-12-08 15:36:32 -0800 |
| commit | 48ea2837adff1483d6d5e8dd6f65611914ddda88 (patch) | |
| tree | 8adb236371b1b3db63d450bb98b583b5d0f67cc6 /nix/profiles/home-manager/ssh.nix | |
| parent | refactor overall configuration (diff) | |
| download | infra-48ea2837adff1483d6d5e8dd6f65611914ddda88.tar.gz | |
more refactoring
Diffstat (limited to 'nix/profiles/home-manager/ssh.nix')
| -rw-r--r-- | nix/profiles/home-manager/ssh.nix | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/nix/profiles/home-manager/ssh.nix b/nix/profiles/home-manager/ssh.nix deleted file mode 100644 index eebfd71..0000000 --- a/nix/profiles/home-manager/ssh.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ ... }: -{ - programs.ssh = { - enable = true; - forwardAgent = true; - serverAliveInterval = 60; - controlMaster = "auto"; - controlPersist = "30m"; - extraConfig = '' - IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock" - ''; - matchBlocks = { - "personal" = { - hostname = "github.com"; - user = "git"; - forwardAgent = false; - extraOptions = { preferredAuthentications = "publickey"; }; - }; - "github.com" = { - hostname = "github.com"; - user = "git"; - forwardAgent = false; - extraOptions = { preferredAuthentications = "publickey"; }; - }; - "github.rbx.com" = { - hostname = "github.rbx.com"; - user = "git"; - forwardAgent = false; - extraOptions = { preferredAuthentications = "publickey"; }; - }; - }; - }; - - # Generate ssh agent config for 1Password - I want both my personal and work keys - home.file.".config/1Password/ssh/agent.toml".text = '' - [[ssh-keys]] - account = "my.1password.com" - - [[ssh-keys]] - account = "roblox.1password.com" - item = "GitHub ssh key" - vault = "Private" - ''; -} |
