dotfiles/nixcfgs/modules/nixos/desktop/de/hyprland.nix

14 lines
266 B
Nix

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