Files
nixos-flake/nixosModules/hyprland-system.nix
T
2026-01-12 10:16:59 +01:00

16 lines
250 B
Nix

{ config, pkgs, ... }:
{
# program enable
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
# xdg portal for hyprland
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
}