12 lines
199 B
Nix
12 lines
199 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
(pkgs.buildFHSEnv {
|
||
|
name = "open-webui-fhs-env";
|
||
|
targetPkgs = pkgs: with pkgs; [
|
||
|
tmux
|
||
|
# bash
|
||
|
# python311
|
||
|
];
|
||
|
runScript = "./run-open-webui.sh";
|
||
|
}).env
|
||
|
|