aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-12 11:29:21 +0000
committerFuwn <[email protected]>2024-09-12 11:36:10 +0000
commitd487f5e5cb22e58e5ec164e20168b39a75ca39e8 (patch)
treeadf8120847661c79a121848351c304507aeb7899 /shell.nix
parentfeat: initial release (diff)
downloadpywal.nix-d487f5e5cb22e58e5ec164e20168b39a75ca39e8.tar.xz
pywal.nix-d487f5e5cb22e58e5ec164e20168b39a75ca39e8.zip
feat: more backends
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix10
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
+ ];
+}