flake/hosts/modules/wm/hyprland.nix

26 lines
468 B
Nix
Raw Normal View History

{pkgs, ...}: {
environment.defaultPackages = with pkgs; [
hyprsunset
];
2026-02-24 23:43:16 +10:00
xdg.portal = {
enable = true;
wlr.enable = true;
# extraPortals = with pkgs; [
# xdg-desktop-portal-hyprland
# xdg-desktop-portal-gtk
# ];
};
programs = {
hyprland = {
enable = true;
2026-02-24 23:43:16 +10:00
# withUWSM = true; # Universal Wayland Session Manager
xwayland.enable = true;
2026-02-24 23:43:16 +10:00
portalPackage = pkgs.xdg-desktop-portal-hyprland;
};
};
}