From 35571f6af1977b8461ba2ce9dc356b39227e1b63 Mon Sep 17 00:00:00 2001 From: _cry64 Date: Sun, 22 Feb 2026 02:40:09 +1000 Subject: [PATCH] add missing deploy.rollback option --- cerulean/snow/nodes/submodule.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cerulean/snow/nodes/submodule.nix b/cerulean/snow/nodes/submodule.nix index 3f2e59e..340a395 100644 --- a/cerulean/snow/nodes/submodule.nix +++ b/cerulean/snow/nodes/submodule.nix @@ -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;