This commit is contained in:
ltadeu6 2026-04-15 16:39:18 -03:00
parent 8364260ec0
commit 9b07740b53
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D
6 changed files with 153 additions and 0 deletions

14
shell.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> { } }:
let
py = pkgs.python312.withPackages (ps: [
ps.requests
ps.pillow
]);
in
pkgs.mkShell {
packages = [
py
pkgs.playerctl
];
}