(mirror) personal dotfiles github.com/crescentrose/dotfiles

feat: clean up home directory a bit

+11 -2
+11 -2
machines/starlight/default.nix
··· 164 164 lm_sensors 165 165 ]; 166 166 167 - # Use nano as the default editor (if we do not have something user-specific) 168 - environment.variables.eDITOR = "nano"; 167 + environment.variables = { 168 + # Use nano as the default editor (if we do not have something user-specific) 169 + EDITOR = "nano"; 170 + 171 + # Do not shove Go stuff in my home dir, ugly 172 + GOPATH = "$HOME/.local/share/go"; 173 + 174 + # Do not shove Rust stuff in my home dir, ugly 175 + CARGO_HOME = "$HOME/.local/share/cargo"; 176 + RUSTUP_HONE = "$HOME/.local/share/rustup"; 177 + }; 169 178 170 179 # Set up dconf 171 180 programs.dconf.enable = true;