Compare commits
2 commits
35571f6af1
...
fe1537735d
| Author | SHA1 | Date | |
|---|---|---|---|
| fe1537735d | |||
| 8928134f12 |
2 changed files with 11 additions and 2 deletions
|
|
@ -130,7 +130,7 @@ in
|
||||||
(node.deploy)
|
(node.deploy)
|
||||||
ssh
|
ssh
|
||||||
user
|
user
|
||||||
sudo
|
sudoCmd
|
||||||
interactiveSudo
|
interactiveSudo
|
||||||
remoteBuild
|
remoteBuild
|
||||||
rollback
|
rollback
|
||||||
|
|
@ -149,7 +149,7 @@ in
|
||||||
path = nixosFor node.system nixosConfigurations.${name};
|
path = nixosFor node.system nixosConfigurations.${name};
|
||||||
|
|
||||||
user = user;
|
user = user;
|
||||||
sudo = sudo;
|
sudo = sudoCmd;
|
||||||
interactiveSudo = interactiveSudo;
|
interactiveSudo = interactiveSudo;
|
||||||
|
|
||||||
fastConnection = false;
|
fastConnection = false;
|
||||||
|
|
|
||||||
|
|
@ -114,6 +114,15 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
magicRollback = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
example = true;
|
||||||
|
description = ''
|
||||||
|
TODO: im fucking lazy
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
activationTimeout = mkOption {
|
activationTimeout = mkOption {
|
||||||
type = types.int;
|
type = types.int;
|
||||||
default = 500;
|
default = 500;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue