NixToSee/modules/pkg_mgrmnt/flatpak.nix
2025-06-09 20:37:55 +02:00

23 lines
523 B
Nix

{inArgs, ...}: {
imports = [ inArgs.nix-flatpak.nixosModules.nix-flatpak ];
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";
}
];
};
}