aboutsummaryrefslogtreecommitdiff
path: root/nix/flake-compat.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/flake-compat.nix')
-rw-r--r--nix/flake-compat.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/flake-compat.nix b/nix/flake-compat.nix
index bb7ee13e..8b6cb99c 100644
--- a/nix/flake-compat.nix
+++ b/nix/flake-compat.nix
@@ -1,9 +1,9 @@
let
- lock = builtins.fromJSON (builtins.readFile ../../flake.lock);
+ lock = builtins.fromJSON (builtins.readFile ../flake.lock);
inherit (lock.nodes.flake-compat.locked) rev narHash;
flake-compat = fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${rev}.tar.gz";
sha256 = narHash;
};
in
-import flake-compat { src = ../..; }
+import flake-compat { src = ../.; }