summaryrefslogtreecommitdiff
path: root/modules/programs/gnupg/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/programs/gnupg/default.nix')
-rw-r--r--modules/programs/gnupg/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/programs/gnupg/default.nix b/modules/programs/gnupg/default.nix
deleted file mode 100644
index a386bef..0000000
--- a/modules/programs/gnupg/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-{
- config = lib.mkIf config.system.enable {
-
- programs.gnupg.agent = {
- enable = true;
- enableSSHSupport = true;
- pinentryPackage = pkgs.pinentry-gtk2;
- };
-
- home-manager.users.${config.user} = {
- programs.gpg = {
- enable = true;
- publicKeys = [
- {
- source = ../../../files/keys/freya-gpg.pub;
- trust = 5;
- }
- ];
- };
- };
-
- };
-}