diff options
author | Linnnus <[email protected]> | 2025-02-22 06:50:02 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-02-22 06:50:02 +0100 |
commit | 6412f46a45d3b66c85c0cc3952206ad9cca0a110 (patch) | |
tree | 903016674595a980e2f443aec075d9c92a36c205 /flake.nix | |
parent | b42bfa3abcd29cb977fbdc41a02d9f7f1ffeb1a2 (diff) |
Add watermarking service, fix everything
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 + ])) ]; }; }); |