mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-05 16:33:12 +00:00
11 lines
296 B
Nix
11 lines
296 B
Nix
{
|
|
description = "PoC SP module for Bitwarden password management solution";
|
|
|
|
outputs = { self }: {
|
|
nixosModules.default = _:
|
|
{ imports = [ ./module.nix ./cleanup-module.nix ]; };
|
|
configPathsNeeded =
|
|
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
|
};
|
|
}
|