CrOS/modules/software/xdg.nix
TheWanderingCrow 7aa24a3035 add kde portal
2025-03-07 10:46:00 -05:00

19 lines
471 B
Nix

{pkgs, ...}: {
config.xdg.portal = {
xdgOpenUsePortal = true;
enable = true;
wlr.enable = true;
wlr.settings.screencast = {
output_name = "DP-1";
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or";
};
lxqt.enable = true;
extraPortals = [
pkgs.xdg-desktop-portal-wlr
pkgs.xdg-desktop-portal-gtk
pkgs.kdePackages.xdg-desktop-portal-kde
];
config.common.default = "*";
};
}