mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-19 15:31:22 +02:00
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{pkgs, config, mysecrets, ...}: {
|
|
programs.gpg = {
|
|
enable = true;
|
|
homedir = "${config.home.homeDirectory}/.gnupg";
|
|
# $GNUPGHOME/trustdb.gpg stores all the trust level you specified in `programs.gpg.publicKeys` option.
|
|
#
|
|
# If set `mutableTrust` to false, the path $GNUPGHOME/trustdb.gpg will be overwritten on each activation.
|
|
# Thus we can only update trsutedb.gpg via home-manager.
|
|
mutableTrust = true;
|
|
|
|
# $GNUPGHOME/pubring.kbx stores all the public keys you specified in `programs.gpg.publicKeys` option.
|
|
#
|
|
# If set `mutableKeys` to false, the path $GNUPGHOME/pubring.kbx will become an immutable link to the Nix store, denying modifications.
|
|
# Thus we can only update pubring.kbx via home-manager
|
|
mutableKeys = true;
|
|
publicKeys = [
|
|
# https://www.gnupg.org/gph/en/manual/x334.html
|
|
{ source = "${mysecrets}/public/ryan4yin-gpg-keys.pub"; trust = 5; } # ultimate trust, my own keys.
|
|
];
|
|
settings = {
|
|
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
pinentry-curses
|
|
];
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
pinentryFlavor = "curses";
|
|
enableSshSupport = false;
|
|
grabKeyboardAndMouse = true;
|
|
enableScDaemon = false; # enable Smartcard daemon for the GnuPG system
|
|
};
|
|
}
|