flakes/modules/system/flatpak.nix

8 lines
146 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 ];
};
}