Skip to content

Instantly share code, notes, and snippets.

@zenitraM
zenitraM / flake.nix
Last active December 31, 2023 00:29 — forked from mausch/flake.nix
llama-cpp-python nix flake
{
inputs.llama-cpp.url = "github:zenitram/llama.cpp/llama-python-unfree";
inputs.nixpkgs.url = "github:nixos/nixpkgs/63678e9f3d3afecfeafa0acead6239cdb447574c";
inputs.flake-utils.url = "github:numtide/flake-utils/f9e7cf818399d17d347f847525c5a5a8032e4e44";
outputs = { self, nixpkgs, flake-utils, llama-cpp }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = (import nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; });