Skip to content

Commit

Permalink
default.nix: init
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Oct 11, 2023
1 parent 2e29036 commit 4124af1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
inherit (lock.nodes.flake-compat.locked) rev narHash;
in
(import
(fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${rev}.tar.gz";
sha256 = narHash;
})
{ src = ./.; }).defaultNix

0 comments on commit 4124af1

Please sign in to comment.