From 900b3ec36e9fd1baf37c2bb42814c6f2f073ff5c Mon Sep 17 00:00:00 2001 From: "user@node5.net" Date: Mon, 11 Aug 2025 20:28:25 +0200 Subject: Add nix-shell file for easy enroll script usage on nix-os --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..b6f383b --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.python313Packages.exif + pkgs.python313Packages.pillow + ]; + + shellHook = '' + echo 'To add image data, run e.g: python enroll.py static/images/the-beauty-of-ethnicity.jpg ' + ''; +} + -- cgit v1.3.1