NixToSee/modules/pkg_mgrmnt/flatpak.nix
2025-04-12 14:53:12 +02:00

22 lines
447 B
Nix

{
services.flatpak = {
enable = true;
update.auto = {
enable = true;
onCalendar = "weekly";
};
uninstallUnmanaged = true;
remotes = [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
args = "--prio=99";
}
{
name = "flathub-beta";
location = "https://flathub.org/beta-repo/flathub-beta.flatpakrepo";
}
];
};
}