nix/module/Portal.nix
2024-11-06 01:07:30 +03:00

27 lines
482 B
Nix

# Portals are needed for Wayland apps to select files, screen shares etc.
{
config,
lib,
pkgs,
...
}: let
cfg = config.module.desktop.portal;
in {
options.module.desktop.portal.enable = lib.mkEnableOption "the portals.";
config = lib.mkIf cfg.enable {
xdg.portal = {
enable = true;
wlr.enable = true;
xdgOpenUsePortal = false;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
config.common.default = [
"gtk"
"wlr"
];
};
};
}