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

View File

@ -15,6 +15,7 @@ user:
(import ./git.nix user) (import ./git.nix user)
./go.nix ./go.nix
./gtk.nix ./gtk.nix
./home.nix
./htop.nix ./htop.nix
./i3.nix ./i3.nix
./lsd.nix ./lsd.nix

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";
};
}