mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-02-21 10:05:22 +01:00
15 lines
277 B
Nix
15 lines
277 B
Nix
{ }:
|
|
let
|
|
sources = import ./nix/sources.nix;
|
|
pkgs = import sources.unstable { };
|
|
in
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
llama-cpp
|
|
];
|
|
|
|
shellHook = ''
|
|
llama-server -m /models/DeepSeek-R1-Distill-Qwen-14B-Uncensored.Q4_K_S.gguf
|
|
'';
|
|
}
|