mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
13 lines
271 B
Nix
13 lines
271 B
Nix
{pkgs, ...}: {
|
|
config.xdg.portal = {
|
|
xdgOpenUsePortal = true;
|
|
enable = true;
|
|
wlr.enable = true;
|
|
lxqt.enable = true;
|
|
extraPortals = [
|
|
pkgs.xdg-desktop-portal-wlr
|
|
pkgs.xdg-desktop-portal-gtk
|
|
pkgs.xdg-desktop-portal-kde
|
|
];
|
|
};
|
|
}
|