Forgot XDG module

This commit is contained in:
Andrea Ciceri 2022-10-29 12:14:20 +02:00
parent 13ad21f74c
commit e71fee8852
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654

13
modules/xdg/default.nix Normal file
View file

@ -0,0 +1,13 @@
{pkgs, ...}: {
xdg = {
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
gtkUsePortal = true;
};
};
services.pipewire.enable = true;
}