mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
5dd44b673f
Signed-off-by: Richard Brežák <rbrezak@qualityunit.com>
30 lines
718 B
Nix
30 lines
718 B
Nix
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
|
|
{ config, lib, ... }:
|
|
{
|
|
home.packages = [
|
|
custom.gpg-key
|
|
nixpkgs.gnupg
|
|
];
|
|
|
|
home.file.".gpg-agent.conf".text = (pinentryFlavor: ''
|
|
enable-ssh-support
|
|
pinentry-program ${nixpkgs.pinentry.${pinentryFlavor}}/bin/pinentry
|
|
'') "gtk2";
|
|
|
|
home.file.".profile".text = ''
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
'';
|
|
|
|
home.activation.gnupghome = config.lib.dag.entryAfter ["writeBoundary"] ''
|
|
if [ ! -e ~/.gnupg ]
|
|
then
|
|
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
|
|
fi
|
|
'';
|
|
}
|