feat: add new options for a new Script

This commit is contained in:
Peritia 2025-09-16 15:59:17 +02:00
parent c1cac88a32
commit e584237006
2 changed files with 72 additions and 28 deletions

View file

@ -25,6 +25,18 @@ with lib;
description = "Directory for Nyx logs";
};
autoStage = mkOption {
type = types.bool;
default = false;
description = "Automatically stage changes after rebuild/cleanup";
};
autoCommit = mkOption {
type = types.bool;
default = false;
description = "Automatically commit changes after rebuild/cleanup";
};
autoPush = mkOption {
type = types.bool;
default = false;