nilla: init
All checks were successful
/ check (push) Successful in 50s

This commit is contained in:
Nikodem Rabuliński 2025-03-23 11:43:37 +01:00
parent 4f3cac9ff6
commit 03c19b674c
Signed by: nrabulinski
SSH key fingerprint: SHA256:eJRdE3KzMWWk9zrksGEv8+v6F+VqUVR++z2SSPyiL0I
5 changed files with 90 additions and 0 deletions

10
inputs.nix Normal file
View file

@ -0,0 +1,10 @@
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
inherit (lock.nodes.__flake-compat.locked) narHash rev url;
flake-compat = builtins.fetchTarball {
url = "${url}/archive/${rev}.tar.gz";
sha256 = narHash;
};
flake = import flake-compat { src = ./.; };
in
flake.inputs