diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-22 19:55:52 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-22 19:55:52 +0100 |
| commit | c4af2e03eb09a9b6566da1fd0c8be3e341e97463 (patch) | |
| tree | 83efb948618157bd099cb18b8b3dbd7dbbcde779 | |
| parent | 185b25bb1328530b3abe3d4900e976bf3717ed02 (diff) | |
Removed gnome-keyring and updated ssh config for new cgit configuration via tailscale
| -rwxr-xr-x | mun.nix | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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; - }; } |
