nix/common/configuration/environment.nix

12 lines
216 B
Nix
Raw Normal View History

2023-06-18 23:00:40 +00:00
{
environment = {
sessionVariables = rec {
MOZ_ENABLE_WAYLAND = "1";
NIXOS_OZONE_WL = "1";
QT_QPA_PLATFORM = "wayland";
SDL_VIDEODRIVER = "wayland";
EDITOR = "nvim";
};
};
}