From a61d280fe9201d958b1458d30937271d0ce5cc29 Mon Sep 17 00:00:00 2001 From: Jarkko Toivanen Date: Wed, 10 May 2023 19:47:45 +0300 Subject: [PATCH] GPG Stuff --- nixos/leena/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/leena/configuration.nix b/nixos/leena/configuration.nix index cf982c8..5b00535 100644 --- a/nixos/leena/configuration.nix +++ b/nixos/leena/configuration.nix @@ -77,6 +77,13 @@ domains = [ "leena.jakest.us" ]; apiTokenFile = "/home/jt/conf/cloudflare.token"; }; + + programs.gnupg.agent = { + enable = true; + pinentryFlavor = "gtk2"; + enableSSHSupport = true; + }; + networking.firewall.enable = true; networking.firewall.allowedTCPPorts = [ 80 ]; # networking.firewall.allowedUDPPorts = [ ... ];