Files
nixos/home-modules/secretive.nix
T

10 lines
209 B
Nix
Raw Normal View History

2025-08-07 16:38:04 -07:00
{ user, ... } : {
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
'';
};
}