Move secretive to a home module.

Signed-off-by: Mariano Uvalle <jmug@Mac.lan>
This commit is contained in:
Mariano Uvalle 2025-08-07 16:38:04 -07:00
parent 018fcedea3
commit 684969e72b
3 changed files with 11 additions and 7 deletions

View file

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