nixos-configs/devices/nas/modules/arion/default.nix

24 lines
411 B
Nix
Raw Normal View History

{...}: let
configPath = "/var/lib/arion";
in {
imports = [
../../../../modules/arion.nix
./forgejo/compose.nix
2024-02-18 00:10:05 -05:00
./homepage/compose.nix
2024-02-19 12:42:02 -05:00
./immich/compose.nix
./music/jbots/compose.nix
2024-02-23 00:34:43 -05:00
./nextcloud/compose.nix
];
arion = {
enable = true;
rwDataDir = configPath;
};
services.borgbackup.configs.arion = {
paths = [configPath];
exclude = ["**/lineageos*"];
};
}