(mirror) personal dotfiles github.com/crescentrose/dotfiles

fix: 26.05 deprecations

+9 -5
+8 -4
home/programs/ssh.nix
··· 2 2 # use 1password to authenticate with SSH 3 3 programs.ssh = { 4 4 enable = true; 5 - extraConfig = '' 6 - Host * 7 - IdentityAgent ~/.1password/agent.sock 8 - ''; 5 + 6 + # Default host config 7 + matchBlocks."*" = { 8 + identityAgent = "~/.1password/agent.sock"; 9 + }; 10 + 11 + # Fix deprecation warning 12 + enableDefaultConfig = false; 9 13 }; 10 14 }
+1 -1
home/shell/developer.nix
··· 27 27 28 28 # ❄️ Nix 29 29 nixd 30 - nixfmt-rfc-style # nix formatter 30 + nixfmt # nix formatter 31 31 32 32 # 🐍 Python 33 33 uv