diff options
Diffstat (limited to 'home')
| -rw-r--r-- | home/gpg.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/home/gpg.nix b/home/gpg.nix index 19d169e..5c77c78 100644 --- a/home/gpg.nix +++ b/home/gpg.nix @@ -10,12 +10,13 @@ enable = true; homedir = "${config.xdg.dataHome}/gnupg"; - publicKeys = - map (path: { - source = path; - trust = 5; - }) - inputs.self.lib.gpgKeys; + # TODO: only import keys once + #publicKeys = + # map (path: { + # source = path; + # trust = 5; + # }) + # inputs.self.lib.gpgKeys; }; # global gpg agent |