basic file tree buildin

This commit is contained in:
Chance 2025-03-28 02:28:52 -04:00 committed by lily
parent 74faf8fcc9
commit a8e88d9126
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
10 changed files with 462 additions and 36 deletions

15
shell.nix Normal file
View file

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