Add ollama and open-webui

This commit is contained in:
Dave Gallant
2025-02-01 13:04:07 -05:00
parent fbb9a63296
commit 88351e46aa
2 changed files with 25 additions and 4 deletions

View File

@@ -1,4 +1,8 @@
{ stdenv, lib, fetchurl, }:
{
stdenv,
lib,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "cd-fzf";
version = "0.0.1";
@@ -9,8 +13,7 @@ stdenv.mkDerivation rec {
cp ${executable} $out/bin/cd-fzf
'';
meta = with lib; {
description =
"\n Fuzzy find change directory";
description = "\n Fuzzy find change directory";
platforms = platforms.unix;
};
}