commit | 1d4b4faecf469ae8097a873c4bd74f9fb19e261e | [log] [tgz] |
---|---|---|
author | Skyler Grey <minion@clicks.codes> | Thu Oct 19 22:12:53 2023 +0000 |
committer | Skyler Grey <minion@clicks.codes> | Thu Oct 19 22:12:53 2023 +0000 |
tree | 8c6ac42cfabd9960c9065c5b103c7edf6f1cd480 | |
parent | 529f5b1ff0d5252f3bd22624e00795116e7c112f [diff] |
Fix helpers import Previously we referred to "./default" when we should have referred to "./default.nix" or "./" Change-Id: I513634165a034043de4e4a23a873022ec26ade1e
diff --git a/flake.nix b/flake.nix index 1dcca7b..5f0f5fe 100644 --- a/flake.nix +++ b/flake.nix
@@ -2,6 +2,6 @@ description = "Clicks helpers for writing boilerplatey nix"; outputs = { self, nixpkgs }: { - helpers = import ./default; + helpers = import ./; }; }