about summary refs log tree commit diff stats
path: root/hm/soispha/conf/gpg/default.nix
blob: ffc90ffee50cecf3729e95a02cf13505946c8bca (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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  config,
  pkgs,
  ...
}: let
  gpg-agent = {
    enable = true;
    enableZshIntegration = true;
    enableScDaemon = true; # smartcards and such things
    pinentryPackage = pkgs.pinentry-tty;
  };
in {
  programs.gpg = {
    enable = true;
    homedir = "${config.xdg.dataHome}/gnupg/onlykey";
    mutableKeys = false;
    mutableTrust = false;

    settings = {
      default-key = "Benedikt Peetz <benedikt.peetz@b-peetz.de>";
      # TODO: add more
    };

    publicKeys = [
      {
        source = ./keys/key_1;
        trust = "ultimate";
      }
      {
        source = ./keys/key_2;
        trust = "ultimate";
      }
      {
        source = ./keys/key_3;
        trust = "full";
      }
      {
        source = ./keys/key_4;
        trust = "full";
      }
    ];
  };
  services = {
    inherit gpg-agent;
  };
}