mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-06 08:53:11 +00:00
18 lines
427 B
Nix
18 lines
427 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (import ./common.nix config) secrets-exs sp;
|
|
in
|
|
# FIXME do we really want to delete passwords on module deactivation!?
|
|
{
|
|
config = lib.mkIf (!sp.modules.pleroma.enable) {
|
|
system.activationScripts.pleroma =
|
|
lib.trivial.warn
|
|
(
|
|
"pleroma service is disabled, ${secrets-exs} will be removed!"
|
|
)
|
|
''
|
|
rm -f -v ${secrets-exs}
|
|
'';
|
|
};
|
|
}
|