Compare commits
No commits in common. "8677dfd342ac76fce8da9409edc0cc5da35556ab" and "01cddbba133a7c2d608fbf8b644212e8f4f84079" have entirely different histories.
8677dfd342
...
01cddbba13
3 changed files with 7 additions and 13 deletions
|
|
@ -1,10 +1,16 @@
|
||||||
{ inputs, constants, ... }:
|
{
|
||||||
|
inputs,
|
||||||
|
constants,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ inputs.synix.nixosModules.rss-bridge ];
|
imports = [ inputs.synix.nixosModules.rss-bridge ];
|
||||||
|
|
||||||
services.rss-bridge = {
|
services.rss-bridge = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.unstable.rss-bridge;
|
||||||
reverseProxy = {
|
reverseProxy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
subdomain = constants.services.rss-bridge.subdomain;
|
subdomain = constants.services.rss-bridge.subdomain;
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@
|
||||||
final: prev:
|
final: prev:
|
||||||
let
|
let
|
||||||
files = [
|
files = [
|
||||||
./rss-bridge.nix
|
|
||||||
];
|
];
|
||||||
imports = builtins.map (f: import f final prev) files;
|
imports = builtins.map (f: import f final prev) files;
|
||||||
in
|
in
|
||||||
|
|
|
||||||
|
|
@ -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=";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue