diff options
| author | Fuwn <[email protected]> | 2024-09-12 11:29:21 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-12 11:36:10 +0000 |
| commit | d487f5e5cb22e58e5ec164e20168b39a75ca39e8 (patch) | |
| tree | adf8120847661c79a121848351c304507aeb7899 /shell.nix | |
| parent | feat: initial release (diff) | |
| download | pywal.nix-d487f5e5cb22e58e5ec164e20168b39a75ca39e8.tar.xz pywal.nix-d487f5e5cb22e58e5ec164e20168b39a75ca39e8.zip | |
feat: more backends
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..f86a120 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ + pkgs ? import <nixpkgs> { }, +}: +pkgs.mkShell { + packages = with pkgs; [ + imagemagick + python312Packages.colorthief + colorz + ]; +} |