flakes/modules/system/flatpak.nix

9 lines
179 B
Nix
Raw Normal View History

2023-09-26 20:42:01 +07:00
{ pkgs, ... }: {
services.flatpak.enable = true;
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
2023-12-21 20:38:21 +07:00
config.common.default = "*";
2023-09-26 20:42:01 +07:00
};
}