fix: flake config;

This commit is contained in:
Barrett Ruth 2026-02-17 21:10:29 -05:00
parent 49df7e015d
commit 51504b0121
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
4 changed files with 42 additions and 3 deletions

12
flake.nix Normal file
View file

@ -0,0 +1,12 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: {
devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
packages = with nixpkgs.legacyPackages.x86_64-linux; [
uv
python312
];
};
};
}