1
0
Fork 0
puter/profiles/headful/wayland.nix

17 lines
221 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{
config,
lib,
...
}:
let
2025-07-01 19:02:19 +02:00
cfg = config.profiles.headful;
2025-05-11 22:49:04 +02:00
in
{
config = lib.mkIf cfg.enable {
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
2025-07-01 19:02:19 +02:00
SDL_VIDEODRIVER = "wayland,x11";
2025-05-11 22:49:04 +02:00
};
};
}