nilla: init
This commit is contained in:
parent
ad627694f2
commit
1bc3d4739c
5 changed files with 90 additions and 0 deletions
10
inputs.nix
Normal file
10
inputs.nix
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue