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 13:45:21 +00:00
{
pkgs,
config,
...
2023-10-01 20:46:05 +00:00
}: {
pub-solar.paperless = {
2023-02-25 13:45:21 +00:00
enable = true;
2023-10-01 20:46:05 +00:00
hostStateDir = "/opt/documents/paperless";
2023-01-28 21:30:37 +00:00
2023-10-01 20:46:05 +00:00
ftp = {
enable = true;
listenPort = 20021;
2023-02-25 13:45:21 +00:00
};
2023-01-28 21:30:37 +00:00
2023-10-01 20:46:05 +00:00
nextcloud = {
enable = true;
2023-01-28 21:30:37 +00:00
};
2023-02-25 13:45:21 +00:00
};
}