nix-config/hosts/nixos/modules/programs/hyprland.nix

10 lines
209 B
Nix

{ inputs, pkgs, ... }:
{
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
withUWSM = true;
xwayland.enable = true;
};
}