diff options
| author | Preston Pan <ret2pop@gmail.com> | 2025-09-04 15:48:44 -0700 |
|---|---|---|
| committer | Preston Pan <ret2pop@gmail.com> | 2025-09-04 15:48:44 -0700 |
| commit | ba22dd89c67162aa26c7f85c389314ef1f079ace (patch) | |
| tree | 05d7d4368ab3c1d7fdfc833f2d80514b541fa89e /config/nix.org | |
| parent | 4753c566cfc42f3af2bc6fac1717b88c4f32bcec (diff) | |
last commit before modifying image
Diffstat (limited to 'config/nix.org')
| -rw-r--r-- | config/nix.org | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/config/nix.org b/config/nix.org index 125547a..13cd687 100644 --- a/config/nix.org +++ b/config/nix.org @@ -32,6 +32,9 @@ so that adding new configurations that add modifications is made simple. url = "github:oddlama/nix-topology"; inputs.nixpkgs.follows = "nixpkgs"; }; + deep-research = { + url = "github:ret2pop/ollama-deep-researcher"; + }; home-manager = { url = "github:nix-community/home-manager/release-25.05"; inputs.nixpkgs.follows = "nixpkgs"; @@ -50,7 +53,7 @@ so that adding new configurations that add modifications is made simple. }; }; - outputs = { self, nixpkgs, home-manager, nur, disko, lanzaboote, sops-nix, nix-topology, nixos-dns, ... }@attrs: + outputs = { self, nixpkgs, home-manager, nur, disko, lanzaboote, sops-nix, nix-topology, nixos-dns, deep-research, ... }@attrs: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; @@ -69,6 +72,11 @@ so that adding new configurations that add modifications is made simple. { networking.hostName = "${hostname}"; } nix-topology.nixosModules.default ] else [ + { + environment.systemPackages = with nixpkgs.lib; [ + deep-research.packages.${system}.deep-research + ]; + } nix-topology.nixosModules.default lanzaboote.nixosModules.lanzaboote disko.nixosModules.disko @@ -1516,6 +1524,7 @@ I have many imports that we'll go through next. kdePackages.kdenlive kicad murmur + silver-searcher ]) else []); monorepo.profiles = { @@ -2891,6 +2900,7 @@ standard. export EXTRA_CCFLAGS="-I/usr/include" source ${pkgs.zsh-vi-mode}/share/zsh-vi-mode/zsh-vi-mode.plugin.zsh export QT_QPA_PLATFORM="wayland" + export OLLAMA_MODEL="qwen3:14b" ''; localVariables = { |
