diff options
author | Soispha <soispha@vhack.eu> | 2024-01-13 11:38:29 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-13 11:38:29 +0100 |
commit | 12e3c1ad669c7b06bca3ce698798592f3f2567b6 (patch) | |
tree | a590ea17f9843e2b3163392fc05b5d30c028eeca /hm/soispha/conf/alacritty/default.nix | |
parent | build(treewide): Update flake and shell library (diff) | |
download | nixos-config-12e3c1ad669c7b06bca3ce698798592f3f2567b6.zip |
fix(hm): Move the session variables to their associated service
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/alacritty/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hm/soispha/conf/alacritty/default.nix b/hm/soispha/conf/alacritty/default.nix index f595c014..9048fc34 100644 --- a/hm/soispha/conf/alacritty/default.nix +++ b/hm/soispha/conf/alacritty/default.nix @@ -20,6 +20,14 @@ ${lib.strings.fileContents ./yaml/window.yml} ''; in { + home.sessionVariables = { + # This is **not** the TERM variable but a special one to signify my favorite terminal. + TERMINAL = "alacritty"; + + # These two here should be set by alacritty at start-up + # TERM = "alacritty"; + # COLORTERM = "truecolor"; + }; programs.alacritty = { enable = true; }; |