dotfiles/nixcfgs/modules/nixos/desktop/de/hyprland.nix
2025-11-07 09:15:09 +00:00

18 lines
320 B
Nix

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