Compare commits

..

No commits in common. "8677dfd342ac76fce8da9409edc0cc5da35556ab" and "01cddbba133a7c2d608fbf8b644212e8f4f84079" have entirely different histories.

3 changed files with 7 additions and 13 deletions

View file

@ -1,10 +1,16 @@
{ inputs, constants, ... }:
{
inputs,
constants,
pkgs,
...
}:
{
imports = [ inputs.synix.nixosModules.rss-bridge ];
services.rss-bridge = {
enable = true;
package = pkgs.unstable.rss-bridge;
reverseProxy = {
enable = true;
subdomain = constants.services.rss-bridge.subdomain;

View file

@ -12,7 +12,6 @@
final: prev:
let
files = [
./rss-bridge.nix
];
imports = builtins.map (f: import f final prev) files;
in

View file

@ -1,11 +0,0 @@
final: prev: {
rss-bridge = prev.rss-bridge.overrideAttrs (oldAttrs: rec {
version = "2025-06-03";
src = prev.fetchFromGitHub {
owner = "RSS-Bridge";
repo = "rss-bridge";
rev = version;
sha256 = "sha256-S9TSTUwuScOcLbEpGgET1zzH1WlO1IMUOiwzMTsA65s=";
};
});
}