mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-23 03:51:29 +00:00
13 lines
331 B
Nix
13 lines
331 B
Nix
{
|
|
description = "PoC SP module for nextcloud";
|
|
|
|
inputs.nixpkgs-old.url = "nixpkgs/nixos-23.11";
|
|
|
|
outputs = { self, nixpkgs-old }: {
|
|
nixosModules.default = _:
|
|
{ imports = [ ./module.nix ./cleanup-module.nix ]; };
|
|
configPathsNeeded =
|
|
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
|
};
|
|
}
|