liminalOS/modules/linux/desktop-portal/default.nix

8 lines
118 B
Nix
Raw Permalink Normal View History

2024-09-02 18:16:22 -07:00
{ pkgs, ... }:
{
2024-08-27 20:46:31 -07:00
xdg.portal = {
enable = true;
2024-09-02 18:16:22 -07:00
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
2024-08-27 20:46:31 -07:00
};
}