From 2cd41fb4325765b87d7ce7a355b6ffd3b92e1772 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Tue, 20 Apr 2021 12:58:50 -0500 Subject: [PATCH] init: lib/flake A subflake that can be indidividually accessed without also providing an interface to the whole of nixpkgs. Usage: inputs.nixpkgs-lib.url = "github:NixOS/nixpkgs?dir=lib" --- lib/flake.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/flake.nix diff --git a/lib/flake.nix b/lib/flake.nix new file mode 100644 index 00000000000..f05bd40960a --- /dev/null +++ b/lib/flake.nix @@ -0,0 +1,5 @@ +{ + description = "Library of low-level helper functions for nix expressions."; + + outputs = { self }: { lib = import ./lib; }; +}