nixos/systems/ttrss/default.nix

27 lines
732 B
Nix
Raw Normal View History

2022-11-04 19:35:57 +01:00
{ custom, hostname }: { pkgs, ... }:
2022-11-02 21:28:05 +01:00
let
domain = "ttrss.2li.ch";
in
2022-02-28 22:01:50 +01:00
{
imports = [
2022-11-09 01:20:52 +01:00
(import "${custom.inputs.self}/systems/raspi4" {
2022-02-28 22:01:50 +01:00
ip = "10.7.89.115";
2022-11-04 19:35:57 +01:00
inherit custom hostname;
2022-02-28 22:01:50 +01:00
})
2022-11-09 18:30:33 +01:00
(import "${custom.inputs.self}/modules/docker" { inherit custom; })
2022-11-10 23:35:49 +01:00
(import "${custom.inputs.self}/modules/nginx-proxy" {
domain = "rss-bridge.2li.ch";
port = "8082";
inherit custom;
})
2022-11-11 00:08:44 +01:00
(import "${custom.inputs.self}/modules/restic-server-client" {
path = "/var/lib/ttrss";
tag = "tt-rss";
time = "23:00";
inherit custom;
})
2022-11-09 18:30:33 +01:00
"${custom.inputs.self}/modules/rss-bridge"
2022-11-08 23:57:06 +01:00
(import "${custom.inputs.self}/modules/ttrss-postgres" { inherit custom domain; })
2022-02-28 22:01:50 +01:00
];
}