nix-dotfiles/services/freshrrs.nix

10 lines
269 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
environment.systemPackages = [
pkgs.freshrss
];
services.freshrss.enable = true;
2024-04-28 14:42:49 +02:00
services.freshrss.baseUrl = "http://0.0.0.1";
services.freshrss.passwordFile = config.sops.secrets."freshrss".path; #"/run/secrets/freshrss";
}