nixdots/home/programs/xdg/portal.nix

9 lines
126 B
Nix
Raw Normal View History

2024-06-22 05:41:08 +00:00
{pkgs, ...}: {
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
};
}