aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmun.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/mun.nix b/mun.nix
index b9a0d65..9db4fd1 100755
--- a/mun.nix
+++ b/mun.nix
@@ -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;
};