nixos-config/modules/system/services/general/portals/default.nix

17 lines
391 B
Nix
Raw Normal View History

2025-02-02 13:42:37 -05:00
{ config, lib, pkgs, ... }:
2024-11-12 18:03:28 -05:00
{
2025-02-02 13:42:37 -05:00
xdg.portal = lib.mkIf config.system.desktop.enable {
wlr = {
enable = lib.mkForce true;
settings.screencast = {
max_fps = 60;
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or -B 00000066 -b 00000099";
};
};
2025-02-02 13:42:37 -05:00
extraPortals = with pkgs; [
xdg-desktop-portal-gnome
];
};
2024-11-12 18:03:28 -05:00
}