summaryrefslogtreecommitdiff
path: root/home/ebisu/core/system/variables/settings.nix
blob: e3b5eb02aca7dd2b92b81762a9e025b76bf65013 (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
{ config, ... }:
{
  home.sessionVariables = {
    FZF_DEFAULT_OPTS = "--layout=reverse --height 40%";
    QT_QPA_PLATFORMTHEME = "gtk2";
    MOZ_USE_XINPUT2 = "1";
    AWT_TOOLKIT = "MToolkit wmname LG3D";
    _JAVA_AWT_WM_NONREPARENTING = 1;
    OPENAI_API_KEY = "$(cat ${config.sops.secrets.openai_api_key.path})";
    NNN_FIFO = "/tmp/nnn.fifo";
    _Z_DATA = "${config.xdg.dataHome}/z";
    W3M_DIR = "${config.xdg.dataHome}/w3m";
    VMODULES = "${config.xdg.dataHome}/vmodules";
    TEXMFVAR = "${config.xdg.cacheHome}/texlive/texmf-var";
    BUNDLE_USER_CONFIG = "${config.xdg.configHome}/bundle";
    BUNDLE_USER_CACHE = "${config.xdg.cacheHome}/bundle";
    BUNDLE_USER_PLUGIN = "${config.xdg.dataHome}/bundle";
    PSQL_HISTORY = "${config.xdg.dataHome}/psql_history";
    PKG_CACHE_PATH = "${config.xdg.cacheHome}/pkg-cache";
    SUZURI_TOKEN = "$(cat ${config.sops.secrets.suzuri_token.path})";
    FILTER_BRANCH_SQUELCH_WARNING = 1;
  };
}