From aa70bbe0e4f7b4e8a9478669ad9f1ecd8284f5b4 Mon Sep 17 00:00:00 2001 From: chn Date: Thu, 1 Aug 2024 00:21:18 +0800 Subject: [PATCH] move local/lib -> lib.nix --- flake.nix | 2 +- local/lib/default.nix => lib.nix | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename local/lib/default.nix => lib.nix (100%) diff --git a/flake.nix b/flake.nix index d59617d8..0a125d99 100644 --- a/flake.nix +++ b/flake.nix @@ -71,7 +71,7 @@ outputs = inputs: let - localLib = import ./local/lib inputs.nixpkgs.lib; + localLib = import ./lib.nix inputs.nixpkgs.lib; devices = builtins.filter (dir: (builtins.readDir ./devices/${dir})."default.nix" or null == "regular" ) (builtins.attrNames (builtins.readDir ./devices)); in diff --git a/local/lib/default.nix b/lib.nix similarity index 100% rename from local/lib/default.nix rename to lib.nix