Installing git-lfs with Nix
I was pulling the openai/evals
repo and trying to running some of the examples.
The repo uses git-lfs
, so I installed that to my system using home-manager
.
{ config, pkgs, ... }:let systemPackages = with pkgs; [ # ... git-lfs # ... ];in{ programs.git = { enable = true; lfs.enable = true; # ... };};
After applying these changes, I could run
git lfs installgit lfs pull
to populate the jsonl
files in the repo and run the examples.
Recommended
Installing Python Packages with Nix
I've been meaning to try out Simon's llm package for a while now. From reading the docs and following the development, it's a modular,...
Managing Multiple Tool Versions with Nix
This post is extremely similar to nix flakes and direnv. Here, I repeated my process, but with a little more thought and a little less language model...
Nix and Direnv with Flakes
Last year I wrote about nix and direnv as I explored the potential convenience of an isolated, project-specific environment. There were some...