feat: move rss to it's own module and add atom support
This commit is contained in:
parent
452b8b49c3
commit
3991d25293
11 changed files with 875 additions and 143 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue