flake/modules/unfree/flatpak.nix
2024-03-26 11:39:16 +00:00

12 lines
250 B
Nix

{
config,
pkgs,
lib,
...
}: {
# Don't like flatpak, even though it's free
# Only used to contain unfree packages
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
services.flatpak.enable = true;
}