flocon/hosts/common/hyprland.nix

12 lines
383 B
Nix
Raw Normal View History

2024-09-04 21:40:24 +00:00
{ inputs, pkgs, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
# set the flake package
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
# make sure to also set the portal package, so that they are in sync
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
}