mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-08 12:54:38 -05:00
17 lines
232 B
Nix
17 lines
232 B
Nix
{
|
|
flake,
|
|
...
|
|
}:
|
|
let
|
|
pkgs = import flake.inputs.nixpkgs {
|
|
system = "x86_64-linux";
|
|
overlays = [
|
|
flake.inputs.nix-comfyui.overlays.default
|
|
];
|
|
};
|
|
in
|
|
{
|
|
environment.comfyuiPackages = [
|
|
pkgs.comfyui
|
|
];
|
|
}
|