diff options
| author | Ben Sima <ben@bensima.com> | 2025-12-25 18:05:16 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-12-25 18:05:16 -0500 |
| commit | 871b5cf992c6d2b00f2336c898e92943187bbc35 (patch) | |
| tree | 7ccf638b98c46f3b04d571af23ffe91bc71edfec /Omni/Deploy/Deployer.nix | |
| parent | 8f561610a7fe52ef2b42cf61b7048cb743f8ea0f (diff) | |
Omni/Deploy: rename biz-deployer to deployer
Rename the service from biz-deployer to deployer for simplicity.
Updates Deployer.nix, Beryllium.nix, and Biz.nix.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'Omni/Deploy/Deployer.nix')
| -rw-r--r-- | Omni/Deploy/Deployer.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Omni/Deploy/Deployer.nix b/Omni/Deploy/Deployer.nix index ea4ae47..54a8f6c 100644 --- a/Omni/Deploy/Deployer.nix +++ b/Omni/Deploy/Deployer.nix @@ -5,10 +5,10 @@ pkgs, ... }: let - cfg = config.services.biz-deployer; + cfg = config.services.deployer; in { - options.services.biz-deployer = { - enable = lib.mkEnableOption "Enable the biz-deployer mini-PaaS service"; + options.services.deployer = { + enable = lib.mkEnableOption "Enable the deployer mini-PaaS service"; package = lib.mkOption { type = lib.types.package; @@ -61,7 +61,7 @@ in { ]; # The deployer service runs as a timer-triggered oneshot - systemd.services.biz-deployer = { + systemd.services.deployer = { description = "Mini-PaaS deployment agent"; after = ["network-online.target"]; wants = ["network-online.target"]; @@ -82,13 +82,13 @@ in { }; # Timer to run deployer every N seconds - systemd.timers.biz-deployer = { - description = "Timer for biz-deployer reconciliation"; + systemd.timers.deployer = { + description = "Timer for deployer reconciliation"; wantedBy = ["timers.target"]; timerConfig = { OnBootSec = "1min"; OnUnitActiveSec = "${toString cfg.interval}s"; - Unit = "biz-deployer.service"; + Unit = "deployer.service"; }; }; |
