My nix-darwin and NixOS config
3
fork

Configure Feed

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

fix: correct the SSH bug on Mac

+4 -6
+4 -6
home/programs/ssh.nix
··· 51 51 matchBlocks = tailscaleHostBlocks // { 52 52 # Global SSH configuration for all other hosts (git forges, etc.) 53 53 "*" = { 54 - extraOptions = globalExtraOptions; 55 - } // lib.optionalAttrs isDarwin { 56 - # macOS: Use Keychain - must use raw config to preserve casing 57 - extraConfig = '' 58 - UseKeychain yes 59 - ''; 54 + extraOptions = globalExtraOptions // lib.optionalAttrs isDarwin { 55 + # macOS: Store passphrases in Keychain automatically 56 + UseKeychain = "yes"; 57 + }; 60 58 }; 61 59 }; 62 60 };