flake/groups/all/modules/flatpak.nix

13 lines
206 B
Nix
Raw Normal View History

2026-02-13 12:47:55 +10:00
{...}: {
services.flatpak = {
remotes = [
{
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
name = "flathub";
}
];
uninstallUnmanaged = true;
};
}