flake
This commit is contained in:
parent
8364260ec0
commit
9b07740b53
6 changed files with 153 additions and 0 deletions
14
shell.nix
Normal file
14
shell.nix
Normal 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
|
||||
];
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue