diff options
author | Freya Murphy <freya@freyacat.org> | 2025-07-02 20:07:50 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-07-02 20:07:50 -0400 |
commit | b130948ddf03010ef7c2fc9b4b4841e41f5e6b73 (patch) | |
tree | e73fe706908fe79afeaab72157216584d7ad25ce /home/gpg.nix | |
parent | add rosepine themes (diff) | |
download | dotfiles-nix-b130948ddf03010ef7c2fc9b4b4841e41f5e6b73.tar.gz dotfiles-nix-b130948ddf03010ef7c2fc9b4b4841e41f5e6b73.tar.bz2 dotfiles-nix-b130948ddf03010ef7c2fc9b4b4841e41f5e6b73.zip |
add freyanet and sops to thinkpad
Diffstat (limited to 'home/gpg.nix')
-rw-r--r-- | home/gpg.nix | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/home/gpg.nix b/home/gpg.nix index 411cc30..d17611a 100644 --- a/home/gpg.nix +++ b/home/gpg.nix @@ -9,14 +9,13 @@ # install keys into gpg keyring programs.gpg = { enable = true; - # FIXME: this is broken, fails during home-manager activation :( - # - # publicKeys = - # map (path: { - # source = path; - # trust = 5; - # }) - # self.lib.gpgKeys; + + publicKeys = + map (path: { + source = path; + trust = 5; + }) + self.lib.gpgKeys; }; # global gpg agent |