flake/groups/all/modules/flatpak.nix
2026-02-13 12:49:07 +10:00

12 lines
206 B
Nix

{...}: {
services.flatpak = {
remotes = [
{
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
name = "flathub";
}
];
uninstallUnmanaged = true;
};
}