diff options
Diffstat (limited to 'mun.nix')
| -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; - }; } |
