From feb2fcbf29af577159df9e07486e563542399163 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Fri, 17 Jan 2025 09:01:43 -0300 Subject: [PATCH] feat: add ollama back to desktop and laptop --- specific/desktop/home-manager.nix | 3 +++ specific/laptop/home-manager.nix | 3 +++ 2 files changed, 6 insertions(+) diff --git a/specific/desktop/home-manager.nix b/specific/desktop/home-manager.nix index 1a44a7a..0ff70bf 100644 --- a/specific/desktop/home-manager.nix +++ b/specific/desktop/home-manager.nix @@ -119,6 +119,9 @@ programs.neovim = { enable = true; + + # Enable ollama support + ollama.enable = true; }; modules.hyprland = { diff --git a/specific/laptop/home-manager.nix b/specific/laptop/home-manager.nix index ae2073f..4d127fc 100644 --- a/specific/laptop/home-manager.nix +++ b/specific/laptop/home-manager.nix @@ -110,6 +110,9 @@ programs.neovim = { enable = true; + # Enable ollama support + ollama.enable = true; + # Set the hostname for nixd in neovim nixd.hostname = "wizlap"; };