nix-configs/modules/desktop-environment/flatpak.nix

17 lines
221 B
Nix
Raw Normal View History

2024-03-05 16:10:35 +00:00
{
config,
lib,
pkgs,
...
}: {
services.flatpak.enable = true;
xdg.portal = {
enable = true;
# TODO
config.common.default = "*";
extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
};
}