mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-14 00:59:44 +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";
|
|
};
|
|
};
|
|
}
|