Skip to content

Commit 5e1321e

Browse files
committed
Fix example
Fix this eval error: $ nix-build ./example/classic/ error: … while calling the 'import' builtin at /home/bf/inbox/dewclaw/example/classic/default.nix:4:1: 3| 4| import ../. { | ^ 5| inherit pkgs; error: opening file '/home/bf/inbox/dewclaw/example/default.nix': No such file or directory
1 parent f674f81 commit 5e1321e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/classic/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ pkgs ? import <nixpkgs> { }
22
}:
33

4-
import ../. {
4+
import ../../. {
55
inherit pkgs;
66
configuration = ./example.nix;
77
}

0 commit comments

Comments
 (0)