nix/module/desktop/Portal.nix

28 lines
516 B
Nix
Raw Normal View History

# Portals are needed for Wayland apps to select files, screen shares etc.
2024-06-25 04:04:39 +03:00
{ pkgs, lib, config, ... }: with lib; let
cfg = config.module.desktop.portal;
in {
options = {
module.desktop.portal.enable = mkEnableOption "Portals.";
};
config = mkIf cfg.enable {
xdg.portal = {
2024-03-28 12:01:06 +03:00
enable = true;
2024-06-25 04:04:39 +03:00
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
config = {
common = {
default = [
"gtk"
"wlr"
];
};
};
wlr.enable = true;
xdgOpenUsePortal = false;
2024-03-28 12:01:06 +03:00
};
};
}