aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmun.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/mun.nix b/mun.nix
index a7bba0b..80e927e 100755
--- a/mun.nix
+++ b/mun.nix
@@ -107,13 +107,16 @@
programs = {
ssh = {
enable = true;
-
- # Disable legacy defaults (future-proof)
- enableDefaultConfig = false;
-
- matchBlocks."*" = {
- addKeysToAgent = "yes";
- forwardAgent = false; # or true if you actually need it
+ matchBlocks = {
+ "*" = {
+ addKeysToAgent = "yes";
+ forwardAgent = false; # or true if you actually need it
+ };
+ "cgit" = {
+ user = "git";
+ hostname = "cgit"; # tailscale MagicDNS name
+ identityFile = "~/.ssh/cgit";
+ };
};
};
@@ -140,7 +143,4 @@
'';
};
};
- services = {
- gnome-keyring.enable = true;
- };
}