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 /nix/flake.nix | |
| parent | 4753c566cfc42f3af2bc6fac1717b88c4f32bcec (diff) | |
last commit before modifying image
Diffstat (limited to 'nix/flake.nix')
| -rw-r--r-- | nix/flake.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/nix/flake.nix b/nix/flake.nix index c2e1c0f..be9089f 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -12,6 +12,9 @@ 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"; @@ -30,7 +33,7 @@ }; }; - 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; }; @@ -49,6 +52,11 @@ { 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 |
