Fork of Lix to retain it clean from idiot AI sloppers
0

Configure Feed

Select the types of activity you want to include in your feed.

lix / shell.nix
372 B 15 lines
1let 2 lockFile = builtins.fromJSON (builtins.readFile ./flake.lock); 3 flake-compat-node = lockFile.nodes.${lockFile.nodes.root.inputs.flake-compat}; 4 flake-compat = builtins.fetchTarball { 5 inherit (flake-compat-node.locked) url; 6 sha256 = flake-compat-node.locked.narHash; 7 }; 8 9 flake = ( 10 import flake-compat { 11 src = ./.; 12 } 13 ); 14in 15flake.shellNix