switched to using dev shells for local development environment

This commit is contained in:
Leyla Becker 2024-11-11 18:38:44 -06:00
parent 22f6a37ea8
commit 64d547aa16
12 changed files with 64 additions and 19 deletions

14
shell.nix Normal file
View file

@ -0,0 +1,14 @@
(
import
(
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in
fetchTarball {
url = lock.nodes.flake-compat.locked.url or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{src = ./.;}
)
.shellNix