Files
omarchy-nix/modules/nixos/hyprland.nix
T
2025-06-28 12:27:26 -05:00

17 lines
278 B
Nix

inputs: {
config,
pkgs,
...
}: {
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
xdg.portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
config.common.default = "*";
};
}