2025-01-02 18:12:44 -08:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
(pkgs.buildFHSEnv {
|
2025-01-02 22:33:21 -08:00
|
|
|
name = "playground-fhs-env";
|
2025-01-02 18:12:44 -08:00
|
|
|
targetPkgs = pkgs: with pkgs; [
|
|
|
|
tmux
|
2025-01-02 22:33:21 -08:00
|
|
|
fish
|
|
|
|
git # for ComfyUI-Manager
|
2025-01-02 18:12:44 -08:00
|
|
|
];
|
2025-01-02 22:33:21 -08:00
|
|
|
runScript = "./run-playground.sh";
|
2025-01-02 18:12:44 -08:00
|
|
|
}).env
|