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

11 lines
212 B
Nix
Raw Normal View History

2024-08-08 09:02:42 +08:00
{pkgs, ...}: {
2024-07-26 08:55:55 +08:00
# Required to install flatpak
xdg.portal = {
enable = true;
2024-08-08 09:02:42 +08:00
config.common.default = ["gtk"];
extraPortals = [pkgs.xdg-desktop-portal-wlr];
2024-07-26 08:55:55 +08:00
};
2024-07-26 09:46:09 +08:00
services.flatpak.enable = true;
2024-07-26 08:55:55 +08:00
}