summary refs log tree commit diff stats
path: root/env.nix
blob: b0ebd72e6b6e24c5cb32ca6c34b714dc2226dbb1 (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
27
28
29
30
{
  config,
  pkgs,
  ...
}: {
  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}"
    ];
  };
}