Files
nixos-flake/hyprland-system.nix
T
2026-01-11 18:45:50 +01:00

15 lines
222 B
Nix

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