commit | 00c4f3b01280be0863c69e4834118f85f30931d4 | [log] [tgz] |
---|---|---|
author | Skyler Grey <minion@clicks.codes> | Thu Oct 19 22:17:01 2023 +0000 |
committer | Skyler Grey <minion@clicks.codes> | Thu Oct 19 22:17:59 2023 +0000 |
tree | 979834c676319485f8769a8c8598764068e526b1 | |
parent | 1d4b4faecf469ae8097a873c4bd74f9fb19e261e [diff] |
Replace bare directory reference with default.nix Nix cannot refer to the current directory with only ./, that's a syntax error not a path Change-Id: Id1851e1b7fb3d68571d67bfbf1c13faabc4d47eb
diff --git a/flake.nix b/flake.nix index 5f0f5fe..02d96d7 100644 --- a/flake.nix +++ b/flake.nix
@@ -2,6 +2,6 @@ description = "Clicks helpers for writing boilerplatey nix"; outputs = { self, nixpkgs }: { - helpers = import ./; + helpers = import ./default.nix; }; }