summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-22 19:55:52 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-03-22 19:55:52 +0100
commitc4af2e03eb09a9b6566da1fd0c8be3e341e97463 (patch)
tree83efb948618157bd099cb18b8b3dbd7dbbcde779
parent185b25bb1328530b3abe3d4900e976bf3717ed02 (diff)
Removed gnome-keyring and updated ssh config for new cgit configuration via tailscale
-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;
- };
}