15 lines
233 B
Nix
15 lines
233 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
persistence.enable = lib.mkEnableOption "Enable persistence module";
|
|
};
|
|
config = lib.mkIf config.persistence.enable {
|
|
plugins.persistence = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|