Compare commits

...

2 commits

Author SHA1 Message Date
fe1537735d fix rename sudo -> sudoCmd 2026-02-26 14:52:20 +10:00
8928134f12 add magicRollback (tf did it go??) 2026-02-24 17:28:28 +10:00
2 changed files with 11 additions and 2 deletions

View file

@ -130,7 +130,7 @@ in
(node.deploy)
ssh
user
sudo
sudoCmd
interactiveSudo
remoteBuild
rollback
@ -149,7 +149,7 @@ in
path = nixosFor node.system nixosConfigurations.${name};
user = user;
sudo = sudo;
sudo = sudoCmd;
interactiveSudo = interactiveSudo;
fastConnection = false;

View file

@ -114,6 +114,15 @@
'';
};
magicRollback = mkOption {
type = types.bool;
default = true;
example = true;
description = ''
TODO: im fucking lazy
'';
};
activationTimeout = mkOption {
type = types.int;
default = 500;