ALPHA: wire is a tool to deploy nixos systems
wire.althaea.zone/
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