mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 02:04:09 -05:00
19 lines
471 B
Nix
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 = "*";
|
|
};
|
|
}
|