pantheon/systems/modules/programs/hyprland.nix
2025-03-12 03:49:11 +08:00

15 lines
341 B
Nix

{
inputs,
pkgs,
...
}: {
programs.uwsm = {
enable = false;
};
programs.hyprland = {
enable = true;
#withUWSN = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
}