summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
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
+ ]))
];
};
});