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