Files
cnix/hosts/core/hyprland.nix
2024-07-02 17:12:54 +02:00

23 lines
555 B
Nix

{pkgs, ...}: {
programs.hyprland = {
enable = true;
package = pkgs.hyprland;
xwayland.enable = true;
systemd = {
enable = true;
extraCommands = [
"systemctl --user stop graphical-session.target"
"systemctl --user start hyprland-session.target"
];
};
};
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
AMD_VULKAN_ICD = "RADV";
SDL_VIDEODRIVER = "wayland";
QT_QPA_PLATFORM = "wayland";
XDG_SESSION_TYPE = "wayland";
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
};
}