summaryrefslogtreecommitdiff
path: root/Biz.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2025-08-13 13:36:30 -0400
committerBen Sima <ben@bsima.me>2025-08-28 12:14:09 -0400
commit0b005c192b2c141c7f6c9bff4a0702361814c21d (patch)
tree3527a76137f6ee4dd970bba17a93617a311149cb /Biz.nix
parent7de0a3e0abbf1e152423e148d507e17b752a4982 (diff)
Prototype PodcastItLater
This implements a working prototype of PodcastItLater. It basically just works for a single user currently, but the articles are nice to listen to and this is something that we can start to build with.
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;
+ };
}