dotfiles.nix/nixos/fuchsia/services/flatpak.nix

13 lines
219 B
Nix

{ pkgs, ... }:
{
# Required to install flatpak
xdg.portal = {
enable = true;
config.common.default = [ "gtk" ];
extraPortals = [ pkgs.xdg-desktop-portal-wlr ];
};
services.flatpak.enable = true;
}