2024-12-03 16:50:23 -05:00
|
|
|
{ config, pkgs, lib, ... }:
|
2024-11-12 18:03:28 -05:00
|
|
|
{
|
2024-12-12 06:37:05 -05:00
|
|
|
config = lib.mkIf config.system.desktop.enable {
|
|
|
|
xdg.portal = {
|
|
|
|
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";
|
|
|
|
};
|
2024-12-03 16:50:23 -05:00
|
|
|
};
|
2024-12-12 06:37:05 -05:00
|
|
|
extraPortals = with pkgs; [
|
|
|
|
xdg-desktop-portal-gnome
|
|
|
|
xdg-desktop-portal-hyprland
|
|
|
|
];
|
2024-12-02 00:25:14 -05:00
|
|
|
};
|
|
|
|
};
|
2024-11-12 18:03:28 -05:00
|
|
|
}
|