blob: d96c3aa022c1070717c687c2a2be3bc2bf69edcf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ config, lib, ... }:
let cfg = config.my.home.gpg;
in {
options.my.home.gpg = with lib; {
enable = mkEnableOption "gpg configuration";
pinentry = mkOption {
type = types.str;
default = "tty";
example = "gnome3";
description = "Which pinentry interface to use";
};
defaultKey = mkOption {
type = types.str;
default = null;
description = "Default GPG key";
};
};
config = lib.mkIf cfg.enable {
programs.gpg = {
enable = true;
settings = { default-key = cfg.defaultKey; };
};
services.gpg-agent = {
enable = true;
enableSshSupport = true; # One agent to rule them all
pinentryFlavor = cfg.pinentry;
extraConfig = ''
allow-loopback-pinentry
'';
};
};
}
|