format rust and nix files

This commit is contained in:
Chance 2025-03-22 21:58:27 -04:00 committed by lily
parent ab56a40768
commit 628da25cf5
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
9 changed files with 214 additions and 186 deletions

View file

@ -1,13 +1,15 @@
(import
(
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;
}
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
{src = ./.;}
)
.shellNix