Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

Fixes

+26 -22
+5 -4
default-home.nix
··· 58 58 unstable.difftastic 59 59 unstable.jq 60 60 inputs.nixpkgs-search.packages.${system}.nixpkgs-search 61 - zellij 61 + unstable.zellij 62 62 63 63 # Dev tools 64 64 gcc ··· 182 182 programs.git = { 183 183 enable = true; 184 184 lfs.enable = true; 185 - settings.user.name = "Noah Pederson"; 186 - settings.user.email = "noah@packetlost.dev"; 187 - extraConfig = { 185 + settings = { 186 + user.name = "Noah Pederson"; 187 + user.email = "noah@packetlost.dev"; 188 188 sendemail = { 189 189 smtpserver = "smtp.migadu.com"; 190 190 smtpuser = "noah@packetlost.dev"; ··· 215 215 }; 216 216 programs.ssh = { 217 217 enable = true; 218 + enableDefaultConfig = false; 218 219 matchBlocks."*".addKeysToAgent = "yes"; 219 220 }; 220 221
+12 -12
flake.lock
··· 47 47 ] 48 48 }, 49 49 "locked": { 50 - "lastModified": 1776726769, 51 - "narHash": "sha256-1d/fvsvQLxIWKRFcknuu034e3LehWbP11TO94yT23UQ=", 50 + "lastModified": 1776913134, 51 + "narHash": "sha256-/9vfRJTDh9Y4Duo862rzDqBIN7cEFTsAffVZ/UvxVas=", 52 52 "owner": "sadjow", 53 53 "repo": "claude-code-nix", 54 - "rev": "b288b71477311a924785c43a04c4c0e25e02e6fe", 54 + "rev": "20e4b82d08d97bf45d78f32c31eb3509db1c2f2a", 55 55 "type": "github" 56 56 }, 57 57 "original": { ··· 513 513 ] 514 514 }, 515 515 "locked": { 516 - "lastModified": 1776692876, 517 - "narHash": "sha256-7Q05rUgwbkJnjxIJyi8bHUG+XnyZqLxFJz7c8RncpeU=", 516 + "lastModified": 1776910211, 517 + "narHash": "sha256-0ku3gW8bZ9TTpEU2fQw86oU6ZLT2vF6pacF+cLaf7VY=", 518 518 "owner": "nix-community", 519 519 "repo": "NixOS-WSL", 520 - "rev": "51b302c28dbf904a5c341be005eebe0779cf4f16", 520 + "rev": "4e6cad241baa0115a7aae8c55b04c166da4997c9", 521 521 "type": "github" 522 522 }, 523 523 "original": { ··· 611 611 }, 612 612 "nixpkgs_2": { 613 613 "locked": { 614 - "lastModified": 1776434932, 615 - "narHash": "sha256-gyqXNMgk3sh+ogY5svd2eNLJ6oEwzbAeaoBrrxD0lKk=", 614 + "lastModified": 1776734388, 615 + "narHash": "sha256-vl3dkhlE5gzsItuHoEMVe+DlonsK+0836LIRDnm6MXQ=", 616 616 "owner": "nixos", 617 617 "repo": "nixpkgs", 618 - "rev": "c7f47036d3df2add644c46d712d14262b7d86c0c", 618 + "rev": "10e7ad5bbcb421fe07e3a4ad53a634b0cd57ffac", 619 619 "type": "github" 620 620 }, 621 621 "original": { ··· 634 634 ] 635 635 }, 636 636 "locked": { 637 - "lastModified": 1775585728, 638 - "narHash": "sha256-8Psjt+TWvE4thRKktJsXfR6PA/fWWsZ04DVaY6PUhr4=", 637 + "lastModified": 1776796298, 638 + "narHash": "sha256-PcRvlWayisPSjd0UcRQbhG8Oqw78AcPE6x872cPRHN8=", 639 639 "owner": "cachix", 640 640 "repo": "git-hooks.nix", 641 - "rev": "580633fa3fe5fc0379905986543fd7495481913d", 641 + "rev": "3cfd774b0a530725a077e17354fbdb87ea1c4aad", 642 642 "type": "github" 643 643 }, 644 644 "original": {
+9 -6
host-specific/aleister-noah.nix
··· 64 64 unstable.vis 65 65 nodejs 66 66 rclone 67 - zellij 67 + unstable.zellij 68 68 69 69 # Dev tools 70 70 git ··· 157 157 programs.git = { 158 158 enable = true; 159 159 lfs.enable = true; 160 - userName = "Noah Pederson"; 161 - userEmail = "noah@packetlost.dev"; 162 - extraConfig = { 160 + settings = { 161 + user.name = "Noah Pederson"; 162 + user.email = "noah@packetlost.dev"; 163 163 sendemail = { 164 164 smtpserver = "smtp.migadu.com"; 165 165 smtpuser = "noah@packetlost.dev"; ··· 239 239 }; 240 240 programs.ssh = { 241 241 enable = true; 242 + enableDefaultConfig = false; 242 243 extraConfig = builtins.readFile ../ssh/extra; 243 - addKeysToAgent = "yes"; 244 - forwardAgent = true; 244 + matchBlocks."*" = { 245 + addKeysToAgent = "yes"; 246 + forwardAgent = true; 247 + }; 245 248 }; 246 249 247 250 programs.yazi =