First night hacking

This commit is contained in:
Chandler Swift 2025-02-10 19:46:31 -06:00
parent 73f023d269
commit 754a0c425c
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
8 changed files with 209 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShellNoCC {
packages = with pkgs; [
gnumake
];
}