summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2025-02-22 06:50:02 +0100
committerLinnnus <[email protected]>2025-02-22 06:50:02 +0100
commit6412f46a45d3b66c85c0cc3952206ad9cca0a110 (patch)
tree903016674595a980e2f443aec075d9c92a36c205 /flake.nix
parentb42bfa3abcd29cb977fbdc41a02d9f7f1ffeb1a2 (diff)
Add watermarking service, fix everything
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 11 insertions, 1 deletions
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
+ ]))
];
};
});