From 9427511f75dd63b5fa0d1e95aec82a3ca08cfd3c Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Mon, 18 Aug 2025 13:34:37 +0000 Subject: [PATCH] fix(nix): add paperless configuration --- nix/hosts/chaewon/sys.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/hosts/chaewon/sys.nix b/nix/hosts/chaewon/sys.nix index 8a0442f..2a3d994 100644 --- a/nix/hosts/chaewon/sys.nix +++ b/nix/hosts/chaewon/sys.nix @@ -89,6 +89,12 @@ }; }; + services.paperless = { + enable = true; + port = 8050; + passwordFile = config.age.secrets.paperless-password.path; + }; + system.stateVersion = "23.11"; home-manager.users.priime = { pkgs, ... }: { imports = [ ./home.nix ]; }; }