selfprivacy-nixos-config/sp-modules/nextcloud/flake.nix

13 lines
295 B
Nix
Raw Normal View History

2023-11-15 18:26:04 +00:00
{
description = "PoC SP module for nextcloud";
2024-10-24 19:21:15 +00:00
outputs = { self }: {
2024-10-24 19:08:21 +00:00
nixosModules.default = _:
{
imports = [ ./module.nix ./cleanup-module.nix ];
};
configPathsNeeded =
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
};
2023-11-15 18:26:04 +00:00
}