mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-03-23 11:32:51 +01:00
10 lines
271 B
Nix
10 lines
271 B
Nix
![]() |
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
environment.systemPackages = [
|
||
|
pkgs.freshrss
|
||
|
];
|
||
|
services.freshrss.enable = true;
|
||
|
services.freshrss.baseUrl = "http://127.0.0.1";
|
||
|
services.freshrss.passwordFile = config.sops.secrets."freshrss".path; #"/run/secrets/freshrss";
|
||
|
|
||
|
}
|