mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-25 20:41:27 +00:00
13 lines
295 B
Nix
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);
|
|
};
|
|
}
|