mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
19 lines
278 B
Nix
19 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
|
||
|
|
];
|
||
|
|
}
|