Separated langs and game apps into other files

This commit is contained in:
Emmet 2023-05-13 21:02:25 -05:00
parent 0acd3eccb6
commit 7cd647c449
8 changed files with 157 additions and 144 deletions

View file

@ -0,0 +1,80 @@
{ config, pkgs, ... }:
{
# Python packages
home.packages = with pkgs.python310Packages; [
cffi
dbus-python
wheel
pyyaml
zipp
xlib
libvirt
pybind11
pyatspi
attrs
autocommand
bcrypt
pycairo
certifi
chardet
click
cryptography
cssselect
python-dateutil
distro
dnspython
evdev
ewmh
fastjsonschema
fido2
python-gnupg
pygobject3
idna
importlib-metadata
inflect
isodate
jeepney
keyring
lxml
markdown
markupsafe
more-itertools
numpy
ordered-set
packaging
pillow
pip
platformdirs
ply
prettytable
proton-client
protonvpn-nm-lib
psutil
pulsectl
pycparser
pycups
pycurl
pydantic
pyinotify
pyopenssl
pyparsing
pyqt5
pyqt5_sip
pyscard
pythondialog
pyxdg
rdflib
requests
secretstorage
setproctitle
setuptools
six
systemd
tomli
urllib3
wcwidth
websockets
python-zbar
];
}

View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# Python setup
python310Full
imath
pystring
];
}