Split packages into multiple files for easier management.

This commit is contained in:
2025-12-09 12:52:01 +01:00
parent 54bd19fbc0
commit 4daef71117
8 changed files with 151 additions and 140 deletions

View File

@ -0,0 +1,20 @@
{config, pkgs, libs, inputs, nix-flatpak, ...}:
{
services.flatpak = {
enable = true;
remotes = [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
];
packages = [
{
appId = "org.vinegarhq.Sober";
origin = "flathub";
#commit = "e28fd81675b0871614ccdc8fc66c6da6761dd11333a65900a0451edf07ef0ea6";
}
];
};
}