mirror of
https://github.com/Cian-H/openwebui_engineering_assistant.git
synced 2025-12-22 20:51:57 +00:00
21 lines
235 B
Nix
21 lines
235 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
packages = [pkgs.git];
|
|
|
|
languages.python = {
|
|
enable = true;
|
|
uv = {
|
|
enable = true;
|
|
sync = {
|
|
enable = true;
|
|
allExtras = true;
|
|
};
|
|
};
|
|
};
|
|
}
|