diff options
Diffstat (limited to 'home/wayland/modules/portal.nix')
-rw-r--r-- | home/wayland/modules/portal.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/home/wayland/modules/portal.nix b/home/wayland/modules/portal.nix new file mode 100644 index 0000000..5cb620c --- /dev/null +++ b/home/wayland/modules/portal.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: { + xdg.portal = { + enable = true; + + config.common = { + default = "gtk"; + "org.freedesktop.impl.portal.ScreenCast" = "wlr"; + "org.freedesktop.impl.portal.Screenshot" = "wlr"; + }; + + extraPortals = with pkgs; [ + xdg-desktop-portal-wlr + xdg-desktop-portal-gtk + ]; + }; +} |