Files
nixos/home-modules/secretive.nix
T

11 lines
234 B
Nix
Raw Normal View History

2025-08-07 16:38:04 -07:00
{ user, ... } : {
programs.ssh = {
enable = true;
2026-03-04 02:06:00 -08:00
matchBlocks = {
"*" = {
identityAgent = "${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
};
};
2025-08-07 16:38:04 -07:00
};
}