dotfiles/nixos/configs/flatpak.nix
2024-11-07 16:25:41 -07:00

26 lines
607 B
Nix

#
# Support using flatpak apps in Nix.
# Apps themselves are added in nixos/packages/flatpak.nix
#
{ ... }:
{
services.flatpak = {
enable = true;
# Automatically update flatpak apps on activation, weekly.
update.auto.enable = true;
# Provide additional places to get flatpaks from.
remotes = [
{
name = "flathub";
location = "https://flathub.org/repo/flathub.flatpakrepo";
}
{
name = "kitinerary";
location = "https://cdn.kde.org/flatpak/kitinerary-workbench-nightly/kitinerary-workbench-nightly.flatpakrepo";
}
];
};
}