My nix-darwin and NixOS config
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: please be fixed (SSH bug)

+4 -4
+4 -4
home/programs/ssh.nix
··· 48 48 enableDefaultConfig = false; 49 49 50 50 # Tailscale host configurations with dynamic ProxyCommand routing 51 + # macOS-only: preserve exact casing for Apple's SSH Keychain extension 52 + extraConfig = lib.optionalString isDarwin ''UseKeychain yes''; 53 + 51 54 matchBlocks = tailscaleHostBlocks // { 52 55 # Global SSH configuration for all other hosts (git forges, etc.) 53 56 "*" = { 54 - extraOptions = globalExtraOptions // lib.optionalAttrs isDarwin { 55 - # macOS: Store passphrases in Keychain automatically 56 - UseKeychain = "yes"; 57 - }; 57 + extraOptions = globalExtraOptions; 58 58 }; 59 59 }; 60 60 };