Modify crypto for personal needs

This commit is contained in:
Hendrik Sokolowski 2022-05-06 18:36:22 +02:00
parent 8e06f61267
commit 704bc8a514

View file

@ -16,11 +16,17 @@ 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;
services.gpg-agent = { services.gpg-agent = {
enable = true; enable = true;
enableSshSupport = true;
pinentryFlavor = "gnome3"; pinentryFlavor = "gnome3";
verbose = true; verbose = true;
}; };
@ -32,9 +38,6 @@ in
home.packages = [ home.packages = [
gnome.seahorse gnome.seahorse
keepassxc keepassxc
libsecret
qMasterPassword
restic
]; ];
}; };
}; };