deploy-rs: Default to skipping checks and disabling auto / magic rollback

This commit is contained in:
Jack O'Sullivan 2023-12-17 13:40:25 +00:00
parent 318972a086
commit 22bf75d0a0
2 changed files with 5 additions and 3 deletions

View File

@ -47,8 +47,8 @@ in
(nodesFor homes)
);
autoRollback = true;
magicRollback = true;
autoRollback = false;
magicRollback = false;
};
# Filter out null values so deploy merges overriding options correctly

View File

@ -24,7 +24,9 @@ in
coreutils
nixVersions.stable
rage
deploy-rs.deploy-rs
(pkgs.writeShellScriptBin "deploy" ''
exec ${deploy-rs.deploy-rs}/bin/deploy --skip-checks "$@"
'')
home-manager
attic-client
];