nixos-configuration/home/home.nix
2022-02-26 16:31:54 +01:00

9 lines
209 B
Nix

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