nix/module/Portal.nix

36 lines
590 B
Nix
Raw Normal View History

# Portals are needed for Wayland apps to select files, screen shares etc.
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.module.desktop.portal;
in
{
options = {
module.desktop.portal.enable = mkEnableOption "Portals.";
};
2024-06-25 04:04:39 +03:00
config = mkIf cfg.enable {
xdg.portal = {
enable = true;
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
}