dotfiles/nixcfgs/modules/nixos/desktop/de/hyprland.nix
2025-11-22 18:43:51 +00:00

14 lines
265 B
Nix

{pkgs, ...}: {
programs.hyprland = {
enable = true;
withUWSM = true;
xwayland.enable = true;
};
environment.systemPackages = with pkgs; [
# caelestia-shell
xdg-desktop-portal-hyprland
hyprpolkitagent
xdg-desktop-portal-wlr
];
}