forked from tangled.org/core
this repo has no description
at master 446 B view raw
1# Default setup from https://git.lix.systems/lix-project/flake-compat 2let 3 lockFile = builtins.fromJSON (builtins.readFile ./flake.lock); 4 flake-compat-node = lockFile.nodes.${lockFile.nodes.root.inputs.flake-compat}; 5 flake-compat = builtins.fetchTarball { 6 inherit (flake-compat-node.locked) url; 7 sha256 = flake-compat-node.locked.narHash; 8 }; 9 10 flake = ( 11 import flake-compat { 12 src = ./.; 13 } 14 ); 15in 16 flake.defaultNix