Set up nix-shell/direnv

This commit is contained in:
Chandler Swift 2024-11-05 23:58:14 -06:00
parent be53e21620
commit 808d65206a
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
3 changed files with 13 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix;

1
.gitignore vendored
View file

@ -1 +1,2 @@
keys.toml keys.toml
.direnv

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
let
# nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import <nixpkgs> { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
# nixd
gnumake
];
}