1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
2024-12-06 16:21:35 +05:00

11 lines
180 B
Nix

{
environment.sessionVariables = rec {
TERMINAL = "alacritty";
EDITOR = "nvim";
XDG_BIN_HOME = "$HOME/.local/bin";
PATH = [
"${XDG_BIN_HOME}"
];
};
}