2023-09-01 20:17:33 +02:00
|
|
|
{pkgs, ...}: {
|
|
|
|
services.dbus.enable = true;
|
|
|
|
xdg.portal = {
|
|
|
|
enable = true;
|
2023-09-05 23:33:38 +02:00
|
|
|
wlr.enable = true;
|
2023-09-01 20:17:33 +02:00
|
|
|
extraPortals = with pkgs; [xdg-desktop-portal-wlr];
|
|
|
|
};
|
2023-09-03 13:05:23 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
xdg-utils
|
|
|
|
wdisplays
|
|
|
|
wl-clipboard
|
|
|
|
];
|
2023-09-01 20:17:33 +02:00
|
|
|
}
|