mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2024-12-12 14:31:50 +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";
|
|
|
|
} |