12 lines
216 B
Nix
12 lines
216 B
Nix
|
{
|
||
|
environment = {
|
||
|
sessionVariables = rec {
|
||
|
MOZ_ENABLE_WAYLAND = "1";
|
||
|
NIXOS_OZONE_WL = "1";
|
||
|
QT_QPA_PLATFORM = "wayland";
|
||
|
SDL_VIDEODRIVER = "wayland";
|
||
|
EDITOR = "nvim";
|
||
|
};
|
||
|
};
|
||
|
}
|