wire is a tool to deploy nixos systems wire.forall.systems/
nix nixos
0

Configure Feed

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

wire / default.nix
360 B 13 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 = import flake-compat { 10 src = ./.; 11 }; 12in 13flake.defaultNix