setup devshell with gimp and exiftool

This commit is contained in:
midas 2025-02-11 13:42:54 +01:00
parent 63d453efd7
commit 41a034287d
5 changed files with 195 additions and 0 deletions

33
flake.nix Normal file
View file

@ -0,0 +1,33 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
snowfall-lib = {
url = "github:snowfallorg/lib";
inputs.nixpkgs.follows = "nixpkgs";
};
pyproject-nix = {
url = "github:pyproject-nix/pyproject.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs:
inputs.snowfall-lib.mkFlake {
inherit inputs;
src = ./.;
snowfall = {
root = ./nix;
namespace = "my-namespace";
};
alias = {
shells.default = "dev";
};
};
}