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

16 lines
259 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;
onCalender = "weekly";
};
}