From 4949bf9dbb5022a89d6cae2fa17c45824c2f11f4 Mon Sep 17 00:00:00 2001 From: 4DBug <4DBug@github.com> Date: Wed, 28 Jan 2026 14:31:41 -0600 Subject: [PATCH] push --- main.nix | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/main.nix b/main.nix index eee496d..b983923 100644 --- a/main.nix +++ b/main.nix @@ -272,6 +272,45 @@ in user = "bug"; }; + ollama = { + enable = true; + + loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b" "deepseek-r1:8b"]; + }; + + /* + syncthing = { + enable = true; + + extraFlags = [ "--no-default-folder" ]; + + settings = { + devices = if desktop then { + "laptop" = { id = "DEVICE_ID_LAPTOP"; }; + } else { + "desktop" = { id = "DEVICE_ID_DESKTOP"; }; + }; + + folders = { + "nix" = { + path = "~/nix"; + devices = if desktop then [ "laptop" ] else [ "desktop" ]; + }; + + "Documents" = { + path = "~/Documents"; + devices = if desktop then [ "laptop" ] else [ "desktop" ]; + }; + + "Downloads" = { + path = "~/Downloads"; + devices = if desktop then [ "laptop" ] else [ "desktop" ]; + }; + }; + }; + }; + */ + flatpak = { enable = true;