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.

ADD git config

+28
+28
noah-home.nix
··· 75 75 grim 76 76 wl-clipboard 77 77 playerctl 78 + 79 + # Server-specific tools 80 + gocryptfs 78 81 ]; 79 82 80 83 ··· 96 99 enable = true; 97 100 userName = "Noah Pederson"; 98 101 userEmail = "noah@packetlost.dev"; 102 + extraConfig = { 103 + sendemail = { 104 + smtpserver = "smtp.migadu.com"; 105 + smtpuser = "noah@packetlost.dev"; 106 + smtpencryption = "ssl"; 107 + smtpserverport = 465; 108 + }; 109 + init = { 110 + defaultBranch = "master"; 111 + }; 112 + pull = { 113 + rebase = true; 114 + }; 115 + credential = { 116 + helper = "cache"; 117 + }; 118 + }; 119 + ignores = [ 120 + ".direnv/" 121 + ".envrc" 122 + "flake.nix" 123 + "shell.nix" 124 + ".env/" 125 + ".clj-kondo/" 126 + ]; 99 127 }; 100 128 programs.aerc = { 101 129 enable = true;