9 lines
161 B
Nix
9 lines
161 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = [ inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland ];
|
|
};
|
|
}
|