aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/trusted/pgp.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/trusted/pgp.nix')
-rw-r--r--users/fcuny/trusted/pgp.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/users/fcuny/trusted/pgp.nix b/users/fcuny/trusted/pgp.nix
new file mode 100644
index 0000000..79ed7dd
--- /dev/null
+++ b/users/fcuny/trusted/pgp.nix
@@ -0,0 +1,17 @@
+{ config, lib, pkgs, ... }:
+
+{
+ services.gpg-agent = {
+ enable = true;
+ enableSshSupport = true;
+ pinentryFlavor = "gnome3";
+ };
+
+ programs.gpg = {
+ enable = true;
+ settings = {
+ default-key = "23348B57F01D4234B5CFBA0923208AC01EB6EEA1";
+ };
+ };
+}
+