This commit is contained in:
2024-12-10 09:50:36 +04:00
commit 9a5766e277
2 changed files with 14 additions and 0 deletions

14
flake.nix Normal file
View File

@@ -0,0 +1,14 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs =
{ self, nixpkgs }:
{
lib = { system }: import ./lib.nix { inherit nixpkgs system; };
};
}