nix-conf/modules/nixos/environment/default.nix

11 lines
243 B
Nix
Raw Normal View History

2024-04-11 05:35:45 +00:00
_: {
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";
};
};
}