mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
flake-parts/setups: update deploy-rs node default config
This commit is contained in:
parent
93dbf68166
commit
b08945aa39
@ -23,9 +23,16 @@ let
|
||||
freeformType = with lib.types; attrsOf anything;
|
||||
|
||||
options = {
|
||||
fastConnection = lib.mkEnableOption "deploy-rs to assume the target machine is considered fast";
|
||||
autoRollback = lib.mkEnableOption "deploy-rs auto-rollback feature";
|
||||
magicRollback = lib.mkEnableOption "deploy-rs magic rollback feature";
|
||||
fastConnection =
|
||||
lib.mkEnableOption "deploy-rs to assume the target machine is considered fast";
|
||||
autoRollback =
|
||||
lib.mkEnableOption "deploy-rs auto-rollback feature" // {
|
||||
default = true;
|
||||
};
|
||||
magicRollback =
|
||||
lib.mkEnableOption "deploy-rs magic rollback feature" // {
|
||||
default = true;
|
||||
};
|
||||
remoteBuild = lib.mkEnableOption "pass the build process to the remote machine";
|
||||
profiles = lib.mkOption {
|
||||
type = with lib.types; functionTo (attrsOf anything);
|
||||
|
@ -52,9 +52,16 @@ let
|
||||
freeformType = with lib.types; attrsOf anything;
|
||||
|
||||
options = {
|
||||
fastConnection = lib.mkEnableOption "deploy-rs to assume the target machine is considered fast";
|
||||
autoRollback = lib.mkEnableOption "deploy-rs auto-rollback feature";
|
||||
magicRollback = lib.mkEnableOption "deploy-rs magic rollback feature";
|
||||
fastConnection =
|
||||
lib.mkEnableOption "deploy-rs to assume the target machine is considered fast";
|
||||
autoRollback =
|
||||
lib.mkEnableOption "deploy-rs auto-rollback feature" // {
|
||||
default = true;
|
||||
};
|
||||
magicRollback =
|
||||
lib.mkEnableOption "deploy-rs magic rollback feature" // {
|
||||
default = true;
|
||||
};
|
||||
remoteBuild = lib.mkEnableOption "pass the build process to the remote machine";
|
||||
profiles = lib.mkOption {
|
||||
type = with lib.types; functionTo (attrsOf anything);
|
||||
|
Loading…
Reference in New Issue
Block a user