diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-26 21:08:09 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-26 21:08:09 -0500 |
| commit | 7f10dea6964ca36a09646aac104c12a2fadf22e2 (patch) | |
| tree | 193700d4349419ef4bf6c66814d5c162e4b7f5a0 /home | |
| parent | sops: rotate shinji key (diff) | |
| download | dotfiles-nix-7f10dea6964ca36a09646aac104c12a2fadf22e2.tar.gz dotfiles-nix-7f10dea6964ca36a09646aac104c12a2fadf22e2.tar.bz2 dotfiles-nix-7f10dea6964ca36a09646aac104c12a2fadf22e2.zip | |
update commits
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 |