infrastructure/profiles/gui/nixos/firefox.nix
2021-03-28 21:03:48 +01:00

14 lines
230 B
Nix

{ config, pkgs, lib, witch, ... }:
{
xdg = {
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
gtkUsePortal = true;
};
};
}