25 lines
496 B
Nix
25 lines
496 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
services.flatpak = {
|
|
enable = true;
|
|
remotes = [
|
|
{
|
|
name = "flathub";
|
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
|
}
|
|
{
|
|
name = "flathub-beta";
|
|
location = "https://dl.flathub.org/beta-repo/flathub-beta.flatpakrepo";
|
|
}
|
|
];
|
|
update.auto = {
|
|
enable = true;
|
|
onCalendar = "daily";
|
|
};
|
|
packages = [
|
|
"com.github.tchx84.Flatseal"
|
|
"io.github.kolunmi.Bazaar"
|
|
];
|
|
};
|
|
}
|