mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-06 00:43:11 +00:00
10 lines
237 B
Nix
10 lines
237 B
Nix
|
{
|
||
|
description = "PoC SP module for Restic backup service";
|
||
|
|
||
|
outputs = { self }: {
|
||
|
nixosModules.default = import ./module.nix;
|
||
|
configPathsNeeded =
|
||
|
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
||
|
};
|
||
|
}
|