selfprivacy-nixos-config/sp-modules/nextcloud/flake.nix
2024-10-24 22:21:15 +03:00

13 lines
295 B
Nix

{
description = "PoC SP module for nextcloud";
outputs = { self }: {
nixosModules.default = _:
{
imports = [ ./module.nix ./cleanup-module.nix ];
};
configPathsNeeded =
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
};
}