summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-10 19:45:00 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-10 19:45:00 +0100
commite630ee6b0bc795e7ef500483bd48d9f71b0f607a (patch)
treeb8b635517f4c933df0c455acdff47a20c5b4a25c
parentfab88511b26ba8f674aad01715b315cf337c312b (diff)
fixed syntax errors
-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;
};