phototrie/devenv.nix
Olivier 'reivilibre 4f7e4d395b Update nixpkgs to 25.05 (and update Pillow)
Signed-off-by: Olivier 'reivilibre <git.contact@librepush.net>
2025-06-15 13:23:00 +01:00

20 lines
287 B
Nix

{ pkgs, lib, config, inputs, ... }:
{
cachix.enable = false;
packages = with pkgs; [
exiftool
];
languages.python = {
enable = true;
package = pkgs.python311Full;
poetry.enable = true;
};
# See full reference at https://devenv.sh/reference/options/
}