Add nix development environment

This commit is contained in:
♥ Minnie ♥ 2024-05-20 13:04:07 +08:00
parent 2aa08850d3
commit f483c598e0
No known key found for this signature in database
3 changed files with 7 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use_nix

2
.gitignore vendored
View file

@ -12,3 +12,5 @@
*.ai
*.svg
*.dxf
.direnv

4
shell.nix Normal file
View file

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ clojure leiningen openscad ];
}