Modify crypto for personal needs

This commit is contained in:
Hendrik Sokolowski 2022-05-06 18:36:22 +02:00
parent cc0dd3f8c4
commit da5aeefbff

View file

@ -16,6 +16,11 @@ in
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
environment.shellInit = ''
gpg-connect-agent /bye
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
'';
home-manager = with pkgs; pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] { home-manager = with pkgs; pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
systemd.user.services.polkit-gnome-authentication-agent = import ./polkit-gnome-authentication-agent.service.nix pkgs; systemd.user.services.polkit-gnome-authentication-agent = import ./polkit-gnome-authentication-agent.service.nix pkgs;
@ -32,9 +37,6 @@ in
home.packages = [ home.packages = [
gnome.seahorse gnome.seahorse
keepassxc keepassxc
libsecret
qMasterPassword
restic
]; ];
}; };
}; };