Files
NixConfig/nixos/conf/Flatpak/flatpak.nix
T
2025-10-18 16:14:28 -03:00

21 lines
441 B
Nix

{ config, lib, inputs, pkgs, ... }: {
services.flatpak = {
enable = true;
packages = [
"org.vinegarhq.Sober/x86_64/stable"
"com.dec05eba.gpu_screen_recorder/x86_64/stable"
];
update.auto = {
enable = true;
onCalendar = "weekly"; # Default value
};
};
xdg.portal = {
enable = true;
extraPortals = [pkgs.kdePackages.xdg-desktop-portal-kde];
config.common.default = "*";
};
}