18 lines
430 B
Nix
18 lines
430 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
services.flatpak.remotes = lib.mkOptionDefault [{
|
|
name = "flathub";
|
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
|
}];
|
|
|
|
services.flatpak.update.auto.enable = true;
|
|
services.flatpak.uninstallUnmanaged = true;
|
|
|
|
services.flatpak.packages = [
|
|
"io.gitlab.librewolf-community"
|
|
"app.grayjay.Grayjay"
|
|
"com.github.unrud.VideoDownloader"
|
|
"com.github.tchx84.Flatseal"
|
|
];
|
|
} |