2024-01-22 15:50:05 -05:00
|
|
|
{...}: let
|
2024-01-07 02:05:16 -05:00
|
|
|
configPath = "/var/lib/arion";
|
2024-01-05 03:41:21 -05:00
|
|
|
in {
|
2024-01-22 15:50:05 -05:00
|
|
|
imports = [
|
|
|
|
../../../../modules/arion.nix
|
2024-01-09 13:48:00 -05:00
|
|
|
|
2024-01-22 15:50:05 -05:00
|
|
|
./forgejo/compose.nix
|
|
|
|
./music/jbots/compose.nix
|
2024-01-09 13:48:00 -05:00
|
|
|
];
|
2024-01-07 02:05:16 -05:00
|
|
|
|
2024-01-22 15:50:05 -05:00
|
|
|
arion = {
|
|
|
|
enable = true;
|
|
|
|
rwDataDir = configPath;
|
|
|
|
};
|
|
|
|
|
2024-01-07 02:05:16 -05:00
|
|
|
services.borgbackup.configs.arion = {
|
|
|
|
paths = [configPath];
|
|
|
|
exclude = ["**/lineageos*"];
|
2024-01-05 03:41:21 -05:00
|
|
|
};
|
|
|
|
}
|