aboutsummaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-06-06 10:31:55 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-06-06 10:31:55 -0700
commitc82bd8330576b0ae917fec83215ff053c3371096 (patch)
tree0e5ae808205a261d4ad3eea015fc3f8b0950faa6 /hosts
parent76e2fa4b51e9e3f360fd0bd791f2079c873bf65c (diff)
downloadnix-c82bd8330576b0ae917fec83215ff053c3371096.tar
nix-c82bd8330576b0ae917fec83215ff053c3371096.tar.gz
nix-c82bd8330576b0ae917fec83215ff053c3371096.tar.bz2
nix-c82bd8330576b0ae917fec83215ff053c3371096.tar.lz
nix-c82bd8330576b0ae917fec83215ff053c3371096.tar.xz
nix-c82bd8330576b0ae917fec83215ff053c3371096.tar.zst
nix-c82bd8330576b0ae917fec83215ff053c3371096.zip
Forcibly enable GnuPG SSH socket as user configuration is being ignored now
Diffstat (limited to '')
-rw-r--r--hosts/common/core/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix
index f332f07..1758a24 100644
--- a/hosts/common/core/default.nix
+++ b/hosts/common/core/default.nix
@@ -112,7 +112,10 @@
hardware.enableRedistributableFirmware = true;
programs.atop.enable = true;
- programs.gnupg.agent.enable = true;
+ programs.gnupg.agent = {
+ enable = true;
+ enableSSHSupport = true;
+ };
programs.iftop.enable = true;
programs.mtr.enable = true;
programs.tmux.enable = true;