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