mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2025-02-23 16:20:00 +00:00
11 lines
243 B
Nix
11 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";
|
||
|
};
|
||
|
};
|
||
|
}
|