diff options
author | Adrian Kummerlaender | 2025-07-27 21:52:04 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2025-07-27 21:52:04 +0200 |
commit | dd8558457c5c614c4091f877d9b83cf7222f5c3c (patch) | |
tree | 866bd20e1be9ddfb319e4b97002837e9644fe1b7 /host | |
parent | e4142c9202ac39e0cd6cd59a54db5c702bfd1373 (diff) | |
download | nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.gz nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.bz2 nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.lz nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.xz nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.zst nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.zip |
desktop: Add dunst, setup xwaylandwayland
Diffstat (limited to 'host')
-rw-r--r-- | host/hephaestus.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/host/hephaestus.nix b/host/hephaestus.nix index 9945ca5..ea3b5ab 100644 --- a/host/hephaestus.nix +++ b/host/hephaestus.nix @@ -7,6 +7,16 @@ ../gui/networkmanager.nix ]; + home.packages = with pkgs; [ + xwayland-satellite + ]; + + home.sessionVariables = { + QT_QPA_PLATFORM = "wayland"; + GBM_BACKEND = "nvidia-drm"; + __GLX_VENDOR_LIBRARY_NAME = "nvidia"; + }; + services = { kdeconnect.enable = true; screen-locker.enable = pkgs.lib.mkForce false; |