Files
SaugOS/modules/core/flatpak.nix
2026-03-24 19:07:42 +01:00

14 lines
232 B
Nix

{ pkgs, ... }: {
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
};
services = {
flatpak = {
enable = true;
packages = [ ];
update.onActivation = true;
};
};
}