mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-21 21:50:43 -06:00
formatting
This commit is contained in:
parent
45eeeb3b78
commit
c03776be01
1 changed files with 9 additions and 5 deletions
|
@ -1,11 +1,15 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let inherit (pkgs) python3Packages;
|
let
|
||||||
in
|
inherit (pkgs) python3Packages;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
# nph = pkgs.callPackage ./nim/nph { }; # doesn't compile with 2.2.0 :/
|
# nph = pkgs.callPackage ./nim/nph { }; # doesn't compile with 2.2.0 :/
|
||||||
# nimlangserver = pkgs.callPackage ./nim/nimlangserver { };
|
# nimlangserver = pkgs.callPackage ./nim/nimlangserver { };
|
||||||
nimble = pkgs.callPackage ./nim/nimble { };
|
nimble = pkgs.callPackage ./nim/nimble { };
|
||||||
distrobox = pkgs.callPackage ./distrobox {};
|
|
||||||
llm = python3Packages.callPackage ./llm {};
|
distrobox = pkgs.callPackage ./distrobox { };
|
||||||
llm-claude-3 = python3Packages.callPackage ./llm-plugins/llm-claude-3 {};
|
|
||||||
|
llm = python3Packages.callPackage ./llm { };
|
||||||
|
llm-claude-3 = python3Packages.callPackage ./llm-plugins/llm-claude-3 { };
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue