Files
frank-nix/features/flatpak.nix
T

27 lines
571 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";
}
{
name = "amethyst-mod-manager";
location = "https://chrisdkn.github.io/Amethyst-Mod-Manager/amethyst.flatpakref";
}
];
};
}