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.

Merge branch 'unified'

+4 -3
+3 -3
default-home.nix
··· 138 138 }; 139 139 programs.git = { 140 140 enable = true; 141 - userName = "Noah Pederson"; 142 - userEmail = "noah@packetlost.dev"; 141 + settings.user.name = "Noah Pederson"; 142 + settings.user.email = "noah@packetlost.dev"; 143 143 extraConfig = { 144 144 sendemail = { 145 145 smtpserver = "smtp.migadu.com"; ··· 173 173 }; 174 174 programs.ssh = { 175 175 enable = true; 176 - addKeysToAgent = "yes"; 176 + matchBlocks."*".addKeysToAgent = "yes"; 177 177 }; 178 178 179 179 services.ssh-agent.enable = true;
+1
nvim/init.lua
··· 9 9 -- vim.g.nord_bold = false 10 10 local known_hosts = { 11 11 ["aleister.packetlost.dev"] = "light", 12 + ["aleister.local"] = "light", 12 13 ["accelerator"] = "light" 13 14 } 14 15 local background = known_hosts[vim.loop.os_gethostname()]