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

13 lines
219 B
Nix
Raw Normal View History

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