summaryrefslogtreecommitdiff
path: root/Biz.nix
diff options
context:
space:
mode:
Diffstat (limited to 'Biz.nix')
-rwxr-xr-xBiz.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/Biz.nix b/Biz.nix
index 2268ab0..6aede6c 100755
--- a/Biz.nix
+++ b/Biz.nix
@@ -13,6 +13,8 @@ bild.os {
./Omni/Packages.nix
./Omni/Users.nix
./Biz/Storybook.nix
+ ./Biz/PodcastItLater/Web.nix
+ ./Biz/PodcastItLater/Worker.nix
];
networking.hostName = "biz";
networking.domain = "storybook.bensima.com";
@@ -21,4 +23,12 @@ bild.os {
enable = true;
package = bild.run ./Biz/Storybook.py;
};
+ services.podcastitlater-web = {
+ enable = true;
+ package = bild.run ./Biz/PodcastItLater/Web.py;
+ };
+ services.podcastitlater-worker = {
+ enable = true;
+ package = bild.run ./Biz/PodcastItLater/Worker.py;
+ };
}