17 lines
305 B
Nix
17 lines
305 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
factsGenerator,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
|
||
|
healthchecks.http.paperless = {
|
||
|
url = "http://paperless.ingolf-wagner.de/accounts/login/?next=/";
|
||
|
expectedContent = "paperless.chungus.private";
|
||
|
};
|
||
|
healthchecks.closed.retiolum.ports.paperless = [ config.services.paperless.port ];
|
||
|
|
||
|
}
|