Correct the arguments for ttrss

This commit is contained in:
Andreas Zweili 2022-11-03 11:12:00 +01:00
parent f55c80c1e7
commit 204349772f
2 changed files with 3 additions and 5 deletions

View File

@ -2,11 +2,9 @@
, inputs
, custom
, path ? "/home/${custom.username}"
, pkgs
, tag ? "home-dir"
, time
, ...
}:
}: { pkgs, ... }:
{
imports = [
"${inputs.self}/modules/telegram-notifications"

View File

@ -1,4 +1,4 @@
{ custom, hostname, inputs, pkgs, ... }:
{ custom, hostname, inputs }: { pkgs, ... }:
let
domain = "ttrss.2li.ch";
in
@ -14,7 +14,7 @@ in
(import "${inputs.self}/modules/restic-server-mysql-client" {
path = "/var/lib/ttrss";
tag = "ttrss";
time = "23:00"; inherit custom hostname inputs pkgs;
time = "23:00"; inherit custom hostname inputs;
})
(import "${inputs.self}/modules/ttrss" {
inherit domain inputs;