flakelike

This commit is contained in:
Wroclaw 2024-06-17 07:54:59 +02:00
parent 9cd9d8fe3c
commit ba94153c3b
8 changed files with 221 additions and 0 deletions

10
inputs.nix Normal file
View file

@ -0,0 +1,10 @@
let self = {
lock ? import ./lock.nix
, lib ? import "${(self {}).nixpkgs}/lib"
}:
{
inherit lock;
nixpkgs = builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/${lock.nixpkgs}.tar.gz";
};
in self