infrastructure/profiles/gui/nixos/firefox.nix
2021-03-24 16:51:48 +00:00

16 lines
303 B
Nix

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