2021-03-08 21:35:29 +01:00
|
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
|
2021-02-28 18:14:01 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
{
|
|
|
|
home.packages = [
|
|
|
|
custom.gpg-key
|
2021-02-28 20:00:05 +01:00
|
|
|
nixpkgs.gnupg
|
2021-02-28 18:14:01 +01:00
|
|
|
];
|
|
|
|
|
2021-03-04 19:24:04 +01:00
|
|
|
home.file.".gpg-agent.conf".text = (pinentryFlavor: ''
|
|
|
|
enable-ssh-support
|
|
|
|
pinentry-program ${nixpkgs.pinentry.${pinentryFlavor}}/bin/pinentry
|
|
|
|
'') "gtk2";
|
2021-02-28 20:00:05 +01:00
|
|
|
|
2021-02-28 20:10:20 +01:00
|
|
|
home.file.".profile".text = ''
|
|
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
|
|
'';
|
|
|
|
|
2021-02-28 18:14:01 +01:00
|
|
|
home.activation.gnupghome = config.lib.dag.entryAfter ["writeBoundary"] ''
|
2021-02-28 20:00:05 +01:00
|
|
|
if [ ! -e ~/.gnupg ]
|
|
|
|
then
|
2021-03-04 19:24:04 +01:00
|
|
|
ln -sf /mnt/key/gnupg ~/.gnupg
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -e ~/.gnupg/gpg-agent.conf ]
|
|
|
|
then
|
|
|
|
ln -sf ~/.gpg-agent.conf /mnt/key/gnupg/gpg-agent.conf
|
2021-02-28 20:00:05 +01:00
|
|
|
fi
|
2021-02-28 18:14:01 +01:00
|
|
|
'';
|
|
|
|
}
|