NixToSee/modules/pkg_mgrmnt/flatpak.nix

22 lines
455 B
Nix

{...}: {
services.flatpak = {
enable = true;
update.auto = {
enable = false;
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";
}
];
};
}