me like nix
0

Configure Feed

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

fix warnings

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit 34e35bc7 parent 5934f41a change-id yumxyzkn
+13 -7
+13 -7
hosts/common/home.nix
··· 409 409 410 410 programs.ssh = { 411 411 enable = true; 412 - extraConfig = '' 413 - Host * 414 - IdentityAgent ${config.home.homeDirectory}/.1password/agent.sock 415 - ''; 412 + enableDefaultConfig = false; 413 + matchBlocks = { 414 + "*" = { 415 + extraOptions = { 416 + IdentityAgent = "${config.home.homeDirectory}/.1password/agent.sock"; 417 + }; 418 + }; 419 + }; 416 420 }; 417 421 418 422 programs.awscli = { ··· 538 542 # Program configurations 539 543 programs.git = { 540 544 enable = true; 541 - userName = "seanaye"; 542 - userEmail = "hello@seanaye.ca"; 543 - extraConfig = { 545 + settings = { 546 + user = { 547 + name = "seanaye"; 548 + email = "hello@seanaye.ca"; 549 + }; 544 550 init.defaultBranch = "main"; 545 551 }; 546 552 };