nixfleet/modules/xdg/default.nix
2022-11-10 19:51:43 +01:00

17 lines
283 B
Nix

{pkgs, ...}: {
xdg = {
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
};
};
services.pipewire.enable = true;
environment.sessionVariables = {
GTK_USE_PORTAL = "1";
};
}