flake/hosts/modules/wm/hyprland.nix

25 lines
468 B
Nix

{pkgs, ...}: {
environment.defaultPackages = with pkgs; [
hyprsunset
];
xdg.portal = {
enable = true;
wlr.enable = true;
# extraPortals = with pkgs; [
# xdg-desktop-portal-hyprland
# xdg-desktop-portal-gtk
# ];
};
programs = {
hyprland = {
enable = true;
# withUWSM = true; # Universal Wayland Session Manager
xwayland.enable = true;
portalPackage = pkgs.xdg-desktop-portal-hyprland;
};
};
}