Initial commit

This commit is contained in:
Chandler Swift 2025-02-08 22:34:46 -06:00
commit 534b505a48
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
10 changed files with 215 additions and 0 deletions

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShellNoCC {
packages = with pkgs; [
imagemagick
];
}