comfyui-docker/shell.nix

13 lines
324 B
Nix
Raw Permalink Normal View History

2024-08-02 21:45:15 -05:00
# Shell for bootstrapping flake-enabled nix and home-manager
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
# Enable experimental features without having to specify the argument
NIX_CONFIG = "experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [
lazydocker
pre-commit
go-task
];
}