os/hosts/cox/paperless.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
244 B
Nix
Raw Normal View History

2023-02-25 14:45:21 +01:00
{
pkgs,
config,
...
2023-10-01 22:46:05 +02:00
}: {
pub-solar.paperless = {
2023-02-25 14:45:21 +01:00
enable = true;
2023-10-01 22:46:05 +02:00
hostStateDir = "/opt/documents/paperless";
2023-01-28 22:30:37 +01:00
2023-10-01 22:46:05 +02:00
ftp = {
enable = true;
listenPort = 20021;
2023-02-25 14:45:21 +01:00
};
2023-01-28 22:30:37 +01:00
2023-10-01 22:46:05 +02:00
nextcloud = {
enable = true;
2023-01-28 22:30:37 +01:00
};
2023-02-25 14:45:21 +01:00
};
}