mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-31 09:33:31 -05:00
20 lines
435 B
Nix
20 lines
435 B
Nix
|
{pkgs, ...}: {
|
||
|
home = {
|
||
|
packages = with pkgs; [
|
||
|
(python312.withPackages (
|
||
|
ps: with ps; [
|
||
|
pytesseract
|
||
|
pillow
|
||
|
pyzbar
|
||
|
pygobject3
|
||
|
nanoid
|
||
|
loguru
|
||
|
evdev
|
||
|
setuptools
|
||
|
xlib
|
||
|
]
|
||
|
))
|
||
|
python312Packages.openai-whisper
|
||
|
];
|
||
|
};
|
||
|
}
|