alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix warnings
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
34e35bc7
34e35bc7a11e9143753393cbbc283e9961005d55
parent
5934f41a
5934f41a3f05bc4c94e9654e0a33db270b8c4dba
change-id
yumxyzkn
yumxyzknmpmnylqsyuourkosstkxtkns
+13
-7
1 changed file
Expand all
Collapse all
Unified
Split
hosts
common
home.nix
+13
-7
hosts/common/home.nix
Reviewed
···
409
409
410
410
programs.ssh = {
411
411
enable = true;
412
412
-
extraConfig = ''
413
413
-
Host *
414
414
-
IdentityAgent ${config.home.homeDirectory}/.1password/agent.sock
415
415
-
'';
412
412
+
enableDefaultConfig = false;
413
413
+
matchBlocks = {
414
414
+
"*" = {
415
415
+
extraOptions = {
416
416
+
IdentityAgent = "${config.home.homeDirectory}/.1password/agent.sock";
417
417
+
};
418
418
+
};
419
419
+
};
416
420
};
417
421
418
422
programs.awscli = {
···
538
542
# Program configurations
539
543
programs.git = {
540
544
enable = true;
541
541
-
userName = "seanaye";
542
542
-
userEmail = "hello@seanaye.ca";
543
543
-
extraConfig = {
545
545
+
settings = {
546
546
+
user = {
547
547
+
name = "seanaye";
548
548
+
email = "hello@seanaye.ca";
549
549
+
};
544
550
init.defaultBranch = "main";
545
551
};
546
552
};