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 , inputs
, custom , custom
, path ? "/home/${custom.username}" , path ? "/home/${custom.username}"
, pkgs
, tag ? "home-dir" , tag ? "home-dir"
, time , time
, ... }: { pkgs, ... }:
}:
{ {
imports = [ imports = [
"${inputs.self}/modules/telegram-notifications" "${inputs.self}/modules/telegram-notifications"

View File

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