Files
nixos-flake/hyprland-system.nix
T

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 ];
};
}