dotfiles/modules/nixos/nas/default.nix
2025-12-07 04:37:17 -06:00

18 lines
278 B
Nix

{
flake,
pkgs,
lib,
...
}:
let
syncthing = import ./syncthing { inherit flake; };
photoprism = import ./photoprism { inherit flake lib; };
opencloud = import ./opencloud { inherit flake pkgs; };
in
{
imports = [
syncthing
photoprism
opencloud
];
}