nix-config/modules/flatpak.nix

23 lines
275 B
Nix
Raw Normal View History

2025-01-14 01:29:24 +01:00
{
pkgs,
lib,
...
}: {
services = {
flatpak.enable = true;
};
xdg.portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
config = {
common = {
default = ["gtk"];
};
};
xdgOpenUsePortal = true;
};
}