From 6412f46a45d3b66c85c0cc3952206ad9cca0a110 Mon Sep 17 00:00:00 2001 From: Linnnus Date: Sat, 22 Feb 2025 06:50:02 +0100 Subject: Add watermarking service, fix everything --- flake.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 8abc618..7829d47 100644 --- a/flake.nix +++ b/flake.nix @@ -16,7 +16,9 @@ devShells = eachNixpkgs (pkgs: { default = pkgs.mkShell { inputsFrom = [ - # self.packages.${pkgs.system}.default + # self.packages.${pkgs.system}.app + # self.packages.${pkgs.system}.watermark-worker + # self.packages.${pkgs.system}.notification-worker ]; buildInputs = with pkgs; [ # Services needed for a full deployment. @@ -27,6 +29,14 @@ # Development utilities. minio-client modd + + # Python interpreter + (python3.withPackages (ps: with ps; [ + pillow + psycopg + boto3 + beanstalkc + ])) ]; }; }); -- cgit v1.2.3