Init commit

This commit is contained in:
2025-10-17 11:23:05 +03:00
parent 1e8707500a
commit 404a2ac233
4 changed files with 70 additions and 0 deletions

26
shell.nix Executable file
View File

@@ -0,0 +1,26 @@
{pkgs}: {
default = pkgs.mkShell {
buildInputs = with pkgs; [
python312
];
shellHook =
/*
bash
*/
''
if [ ! -d ./venv ]; then
python -m venv ./venv
source ./venv/bin/activate
pip install -U pip
pip install open-webui
deactivate
fi
source ./venv/bin/activate
'';
};
}