mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 09:41:14 +02:00
17 lines
176 B
Nix
17 lines
176 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
languages.python = {
|
|
enable = true;
|
|
version = "3.14";
|
|
venv = {
|
|
enable = true;
|
|
requirements = ./requirements.txt;
|
|
};
|
|
|
|
};
|
|
}
|