mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2025-02-22 15:50:01 +00:00
10 lines
243 B
Nix
10 lines
243 B
Nix
_: {
|
|
environment = {
|
|
homeBinInPath = true; # Include ~/bin/ in $PATH
|
|
localBinInPath = true; # Include ~/.local/bin in $PATH
|
|
sessionVariables = {
|
|
# tell electron apps to use wayland
|
|
NIXOS_OZONE_WL = "1";
|
|
};
|
|
};
|
|
}
|