flake/groups/all/modules/flatpak.nix

12 lines
206 B
Nix

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