1
0
Fork 0
puter/profiles/headful/wayland.nix
2025-07-01 19:02:19 +02:00

16 lines
221 B
Nix

{
config,
lib,
...
}:
let
cfg = config.profiles.headful;
in
{
config = lib.mkIf cfg.enable {
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
SDL_VIDEODRIVER = "wayland,x11";
};
};
}