diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/hephaestus.nix | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/host/hephaestus.nix b/host/hephaestus.nix index 0067e48..ea3b5ab 100644 --- a/host/hephaestus.nix +++ b/host/hephaestus.nix @@ -3,13 +3,22 @@ { imports = [ ../gui/default.nix - #../gui/xmonad.nix - #../gui/networkmanager.nix - #../gui/stalonetray.nix + ../gui/niri.nix + ../gui/networkmanager.nix ]; - #services = { - # kdeconnect.enable = true; - # screen-locker.enable = pkgs.lib.mkForce false; - #}; + 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; + }; } |