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