12 lines
329 B
Nix
12 lines
329 B
Nix
{ pkgs, ... }: {
|
|
xdg.portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
xdgOpenUsePortal = true;
|
|
extraPortals = [
|
|
pkgs.xdg-desktop-portal-hyprland
|
|
];
|
|
# TODO: I should probably set `xdg.portal.config` or `xdg.portal.configPackages` here, but for now this works...
|
|
config.common.default = "*";
|
|
};
|
|
}
|