diff options
Diffstat (limited to 'mun.nix')
| -rwxr-xr-x | mun.nix | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -47,12 +47,19 @@ - programs = { - ssh = { - enable = true; - forwardAgent = true; +programs = { + ssh = { + enable = true; + + # Disable legacy defaults (future-proof) + enableDefaultConfig = false; + + matchBlocks."*" = { addKeysToAgent = "yes"; + forwardAgent = false; # or true if you actually need it }; + }; + zsh = { enable = true; @@ -77,9 +84,7 @@ fastfetch ''; }; - }; - services = { gnome-keyring.enable = true; }; |
