diff options
author | Adrian Kummerlaender | 2025-07-29 15:36:17 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2025-07-29 15:36:17 +0200 |
commit | 7e178bebb03b5874f115b911c99e5bf7d50d1a21 (patch) | |
tree | 976fae0374921841e8701343391b5c7815c46569 /host | |
parent | dd8558457c5c614c4091f877d9b83cf7222f5c3c (diff) | |
download | nixos_home-7e178bebb03b5874f115b911c99e5bf7d50d1a21.tar nixos_home-7e178bebb03b5874f115b911c99e5bf7d50d1a21.tar.gz nixos_home-7e178bebb03b5874f115b911c99e5bf7d50d1a21.tar.bz2 nixos_home-7e178bebb03b5874f115b911c99e5bf7d50d1a21.tar.lz nixos_home-7e178bebb03b5874f115b911c99e5bf7d50d1a21.tar.xz nixos_home-7e178bebb03b5874f115b911c99e5bf7d50d1a21.tar.zst nixos_home-7e178bebb03b5874f115b911c99e5bf7d50d1a21.zip |
atlas: Tweak niri config, setup screen sharing, test sunshine
Diffstat (limited to 'host')
-rw-r--r-- | host/atlas.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/host/atlas.nix b/host/atlas.nix index f73a1c7..af57198 100644 --- a/host/atlas.nix +++ b/host/atlas.nix @@ -3,6 +3,16 @@ { imports = [ ../gui/default.nix - ../gui/xmonad.nix + ../gui/niri.nix ]; + + home.packages = with pkgs; [ + xwayland-satellite + ]; + + home.sessionVariables = { + QT_QPA_PLATFORM = "wayland"; + GBM_BACKEND = "nvidia-drm"; + __GLX_VENDOR_LIBRARY_NAME = "nvidia"; + }; } |