add missing deploy.rollback option

This commit is contained in:
do butterflies cry? 2026-02-22 02:40:09 +10:00
parent be45d2a4d4
commit 35571f6af1

View file

@ -96,6 +96,15 @@
'';
};
rollback = mkOption {
type = types.bool;
default = true;
example = true;
description = ''
Enables both `autoRollback` and `magicRollback`.
'';
};
autoRollback = mkOption {
type = types.bool;
default = true;