Files
nixos/home-modules/secretive.nix
T
2026-03-04 02:06:00 -08:00

11 lines
234 B
Nix

{ user, ... } : {
programs.ssh = {
enable = true;
matchBlocks = {
"*" = {
identityAgent = "${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
};
};
};
}