Files
frank-nix/features/flatpak.nix
T
2026-07-21 13:13:31 -04:00

23 lines
426 B
Nix

{ lib, ... }:
{
services.flatpak = {
enable = true;
update.auto = {
enable = true;
onCalendar = "weekly";
};
remotes = lib.mkOptionDefault [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
{
name = "flathub-beta";
location = "https://dl.flathub.org/beta-repo/flathub-beta.flatpakrepo";
}
];
};
}