nixos/home-modules/secretive.nix
Mariano Uvalle 684969e72b Move secretive to a home module.
Signed-off-by: Mariano Uvalle <jmug@Mac.lan>
2025-08-07 16:38:04 -07:00

9 lines
209 B
Nix

{ user, ... } : {
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
'';
};
}