Set default editor

This commit is contained in:
Valentin Brandl
2022-02-26 16:31:54 +01:00
parent 02bd5f4c35
commit c8f1f8d393
2 changed files with 9 additions and 0 deletions

8
home/home.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }: {
home.sessionVariables = {
EDITOR = "nvim";
RUSTC_WRAPPER = "sccache";
# JAVA_OPTS = "-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true";
# TERM = "xterm-256color";
};
}