NixToSee/modules/pkg_mgrmnt/flatpak.nix
2025-01-23 04:47:33 +01:00

22 lines
454 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";
}
];
};
}