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