Migrated from multi repos to monorepo architecture.

This commit is contained in:
Raphaël Numbus
2026-05-02 12:52:08 +02:00
parent 72668492f5
commit 73adb395c0
218 changed files with 9639 additions and 57 deletions
+18
View File
@@ -0,0 +1,18 @@
{ 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"
];
}