this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

desktop: add 1password ssh agent

+13 -5
+13 -5
home/modules/ssh.nix
··· 1 - { 1 + {lib, ...}: { 2 2 programs.ssh = { 3 3 enable = true; 4 - matchBlocks."*" = { 5 - identitiesOnly = true; 6 - identityFile = "~/.ssh/id_ed25519_sk_rk"; 7 - user = "ovy"; 4 + matchBlocks = { 5 + "*" = { 6 + identitiesOnly = true; 7 + identityFile = "~/.ssh/id_ed25519_sk_rk"; 8 + user = "ovy"; 9 + }; 10 + # OpenWrt 11 + "192.168.1.1" = lib.hm.dag.entryBefore ["*"] { 12 + user = "root"; 13 + extraOptions.IdentityAgent = "~/.1password/agent.sock"; 14 + extraOptions.IdentitiesOnly = "no"; 15 + }; 8 16 }; 9 17 }; 10 18 }