my nixos/home-manager configuration
1
fork

Configure Feed

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

use full path for 1password ssh socket

+2 -1
+2 -1
home-manager/modules/ssh.nix
··· 1 1 { 2 2 config, 3 3 lib, 4 + user, 4 5 ... 5 6 }: 6 7 ··· 13 14 enableDefaultConfig = false; 14 15 matchBlocks = { 15 16 "*" = { 16 - identityAgent = "~/.1password/agent.sock"; 17 + identityAgent = "${user.homeDirectory}/.1password/agent.sock"; 17 18 setEnv.TERM = "xterm-256color"; 18 19 }; 19 20 };