diff --git a/modules/restic-server-mysql-client/default.nix b/modules/restic-server-mysql-client/default.nix index f985a55..3850b54 100644 --- a/modules/restic-server-mysql-client/default.nix +++ b/modules/restic-server-mysql-client/default.nix @@ -2,11 +2,9 @@ , inputs , custom , path ? "/home/${custom.username}" -, pkgs , tag ? "home-dir" , time -, ... -}: +}: { pkgs, ... }: { imports = [ "${inputs.self}/modules/telegram-notifications" diff --git a/systems/ttrss/default.nix b/systems/ttrss/default.nix index d9f600d..2d19ea0 100644 --- a/systems/ttrss/default.nix +++ b/systems/ttrss/default.nix @@ -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;