summaryrefslogtreecommitdiffstats
path: root/common/environment
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-05-04 18:17:38 +0200
committersils <sils@sils.li>2023-05-04 18:17:38 +0200
commit4eaf76cf1e0af9ec7a630320bb7d4956041dd03e (patch)
tree4073ad033ef5f0939e76bb82a75847b34ca4bba9 /common/environment
parentChore(flake): Update (diff)
downloadnix-config-4eaf76cf1e0af9ec7a630320bb7d4956041dd03e.zip
Structure(treewide): Use new structure with home-manager
home-manager enables great possibilities and is part of simplifying the structure of my config.
Diffstat (limited to 'common/environment')
-rw-r--r--common/environment/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/common/environment/default.nix b/common/environment/default.nix
deleted file mode 100644
index 8f58641..0000000
--- a/common/environment/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{...}: {
- 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}"
- ];
- };
-}