summaryrefslogtreecommitdiff
path: root/Biz.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-12-17 13:29:40 -0500
committerBen Sima <ben@bensima.com>2025-12-17 13:29:40 -0500
commitab01b34bf563990e0f491ada646472aaade97610 (patch)
tree5e46a1a157bb846b0c3a090a83153c788da2b977 /Biz.nix
parente112d3ce07fa24f31a281e521a554cc881a76c7b (diff)
parent337648981cc5a55935116141341521f4fce83214 (diff)
Merge Ava deployment changes
Diffstat (limited to 'Biz.nix')
-rwxr-xr-xBiz.nix23
1 files changed, 9 insertions, 14 deletions
diff --git a/Biz.nix b/Biz.nix
index c9e91c3..676fac8 100755
--- a/Biz.nix
+++ b/Biz.nix
@@ -22,23 +22,18 @@ bild.os {
./Omni/Os/Base.nix
./Omni/Packages.nix
./Omni/Users.nix
- ./Biz/Storybook.nix
- ./Biz/PodcastItLater/Web.nix
- ./Biz/PodcastItLater/Worker.nix
+ ./Omni/Deploy/Deployer.nix
];
networking.hostName = "biz";
- networking.domain = "storybook.bensima.com";
+ networking.domain = "podcastitlater.bensima.com";
time.timeZone = "America/New_York";
- services.storybook = {
- enable = false;
- package = packages.storybook;
- };
- services.podcastitlater-web = {
- enable = true;
- package = packages.podcastitlater-web;
- };
- services.podcastitlater-worker = {
+
+ # Mini-PaaS deployer service manages all application services
+ # via manifest.json in S3. Services like podcastitlater-web,
+ # podcastitlater-worker are deployed dynamically without NixOS rebuild.
+ services.biz-deployer = {
enable = true;
- package = packages.podcastitlater-worker;
+ package = packages.biz-deployer;
+ manifestPackage = packages.deploy-manifest;
};
}