From 51b6e2b4968ef8066e3429e533dfbb4583eb9162 Mon Sep 17 00:00:00 2001 From: John Axel Eriksson Date: Fri, 16 Jan 2026 12:31:11 +0100 Subject: [PATCH] fix(workstation): allow sudo caching across tty:s --- profiles/workstation.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/profiles/workstation.nix b/profiles/workstation.nix index 6225c48b2..69650abb0 100644 --- a/profiles/workstation.nix +++ b/profiles/workstation.nix @@ -45,6 +45,11 @@ }; security.polkit.enable = true; + + # Allow sudo credential caching across TTYs (useful for Zellij panes, etc.) + security.sudo.extraConfig = '' + Defaults !tty_tickets + ''; services.gnome.gnome-keyring.enable = true; systemd.user.services.polkit-gnome-authentication-agent-1 = {