summary refs log tree commit diff stats
path: root/common/environment/default.nix
blob: 8f58641937b48f34edfb3a4ce1007eba7601cada (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{...}: {
  environment.sessionVariables = rec {
    XDG_CACHE_HOME = "\${HOME}/.cache";
    XDG_CONFIG_HOME = "\${HOME}/.config";
    XDG_BIN_HOME = "\${HOME}/.local/bin";
    XDG_DATA_HOME = "\${HOME}/.local/share";
    XDG_STATE_HOME = "\${HOME}/.local/state";
    ZDOTDIR = "\${HOME}/.config/zsh";
    CARGO_HOME = "\${HOME}/.local/share/cargo";
    ANDROID_HOME = "\${HOME}/.local/share/android";
    ANSIBLE_HOME = "\${HOME}/.local/share/ansible";
    #_JAVA_OPTIONS	= '-Djava.util.prefs.userRoot="\${XDG_CONFIG_HOME}/java"';
    WINEPREFIX = "\${HOME}/.local/share/wine";
    GNUPGHOME = "\${HOME}/.local/share/gnupg";
    GRADLE_USER_HOME = "\${HOME}/.local/share/gradle";
    GTK2_RC_FILES = "\${HOME}/.config/gtk-2.0/gtkrc";
    EDITOR = "nvim";
    GOPATH = "\${HOME}/.local/share/go";
    XCOMPOSECACHE = "\${HOME}/.cache/X11/xcompose";
    #PYTHONSTARTUP="/etc/python/pythonrc";

    PATH = [
      "\${XDG_BIN_HOME}"
    ];
  };
}