nixos-config/system/desktop/default.nix
2024-02-07 19:05:44 +01:00

14 lines
240 B
Nix

{pkgs, ...}: {
xdg = {
portal = {
enable = true;
config = {
common.default = ["gtk"];
};
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
};
};
}