feat: move rss to it's own module and add atom support

This commit is contained in:
Jet 2026-03-23 15:43:02 -07:00
parent 452b8b49c3
commit 3991d25293
No known key found for this signature in database
11 changed files with 875 additions and 143 deletions

View file

@ -66,6 +66,7 @@
);
noisebell-cache = buildRemoteMember "noisebell-cache";
noisebell-rss = buildRemoteMember "noisebell-rss";
noisebell-discord = buildRemoteMember "noisebell-discord";
crossPkgs = import nixpkgs {
@ -346,6 +347,7 @@
packages.${system} = {
inherit
noisebell-cache
noisebell-rss
noisebell-discord
flash-pi-sd
pi-serial
@ -361,10 +363,12 @@
nixosModules = {
cache = import ./remote/cache-service/module.nix noisebell-cache;
rss = import ./remote/rss-service/module.nix noisebell-rss;
discord = import ./remote/discord-bot/module.nix noisebell-discord;
default = {
imports = [
(import ./remote/cache-service/module.nix noisebell-cache)
(import ./remote/rss-service/module.nix noisebell-rss)
(import ./remote/discord-bot/module.nix noisebell-discord)
(import ./remote/hosted-module.nix {
inherit self agenix;