nixos-configuration/home/home.nix

9 lines
209 B
Nix
Raw Normal View History

2022-02-26 16:31:54 +01:00
{ pkgs, ... }: {
home.sessionVariables = {
EDITOR = "nvim";
RUSTC_WRAPPER = "sccache";
# JAVA_OPTS = "-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true";
# TERM = "xterm-256color";
};
}