diff --git a/home/apps/zed.nix b/home/apps/zed.nix index 17269ff6..49250b03 100644 --- a/home/apps/zed.nix +++ b/home/apps/zed.nix @@ -3,10 +3,7 @@ lib, ... }: { - # home.packages = lib.optionals pkgs.stdenv.isLinux [ - # pkgs.zed-editor - # ]; - + home.packages = with pkgs; [nixd nil sleek]; programs.zed-editor = { enable = true; extensions = ["catppuccin" "toml" "json" "yaml" "markdown" "python" "javascript" "typescript"]; @@ -74,5 +71,6 @@ }; theme = "Catppuccin Mocha"; }; + extraPackages = with pkgs; [nixd nil sleek]; }; } diff --git a/home/programs/aichat.nix b/home/programs/aichat.nix index f23179d9..757bed7f 100644 --- a/home/programs/aichat.nix +++ b/home/programs/aichat.nix @@ -19,27 +19,27 @@ clients = [ { type = "openai-compatible"; - name = "ollama"; + name = "mirai"; api_base = "https://ollama.darksailor.dev/v1"; api_key_cmd = "cat ${config.sops.secrets."llama/api_key".path}"; models = [ + # { + # name = "RobinBially/nomic-embed-text-8k"; + # type = "embedding"; + # default_chunk_size = 8000; + # } { - name = "RobinBially/nomic-embed-text-8k"; - type = "embedding"; - default_chunk_size = 8000; - } - { - name = "deepseek-r1:7b"; - type = "chat"; - } - { - name = "deepseek-r1:14b"; - type = "chat"; - } - { - name = "qwen3:8b"; + name = "gpt-oss-20b"; type = "chat"; } + # { + # name = "deepseek-r1:14b"; + # type = "chat"; + # } + # { + # name = "qwen3:8b"; + # type = "chat"; + # } ]; } {