1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-21 12:41:13 +00:00

Downgrade to python 311

This commit is contained in:
RGBCube 2024-02-04 22:44:57 +03:00
parent 782b655b37
commit 15cd94166b
No known key found for this signature in database

16
modules/python.nix Normal file
View file

@ -0,0 +1,16 @@
{ ulib, pkgs, ... }: with ulib; merge
(systemPackages (with pkgs; [
(python311.withPackages (pkgs: with pkgs; [
pip
requests
]))
virtualenv
poetry
]))
(homeConfiguration {
programs.nushell.shellAliases = {
venv = "virtualenv venv";
};
})