dot_testing/boxes/copernicus/services/paperless.nix

14 lines
260 B
Nix
Raw Normal View History

2024-11-13 22:00:07 -06:00
{ lib, config, pkgs, ...}:
{
services.paperless = {
enable = true;
passwordFile = "/home/usr/wg-keys/paperless";
address = "10.100.0.2";
port = 6230;
2024-11-14 01:52:21 -06:00
settings = {
PAPERLESS_URL = "https://paperless.beepboop.systems";
};
2024-11-13 22:00:07 -06:00
};
}