diff options
author | Adrian Kummerlaender | 2025-07-30 22:27:27 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2025-07-30 22:27:27 +0200 |
commit | 835e110fa2ab7fd186f34cd387642e67b4235bdf (patch) | |
tree | 8f937d47a1714fcfd49820ae6414247f0b2ed29d /host | |
parent | 8dd66b24529bee690b54ad2faf9210467d96a242 (diff) | |
download | nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.gz nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.bz2 nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.lz nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.xz nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.zst nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.zip |
athena: Switch to wayland
Diffstat (limited to 'host')
-rw-r--r-- | host/athena.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/host/athena.nix b/host/athena.nix index b5e9b75..556893e 100644 --- a/host/athena.nix +++ b/host/athena.nix @@ -3,16 +3,20 @@ { imports = [ ../gui/default.nix - ../gui/xmonad.nix + ../gui/niri.nix ../gui/networkmanager.nix - ../gui/stalonetray.nix - ../gui/redshift.nix ]; home.packages = with pkgs; [ acpi brightnessctl - arandr blueman + xwayland-satellite ]; + + home.sessionVariables = { + QT_QPA_PLATFORM = "wayland"; + GBM_BACKEND = "nvidia-drm"; + __GLX_VENDOR_LIBRARY_NAME = "nvidia"; + }; } |