ALPHA: wire is a tool to deploy nixos systems
wire.althaea.zone/
1{
2 inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
3 inputs.wire.url = "github:mrshmllow/wire";
4
5 outputs = inputs @ {
6 nixpkgs,
7 wire,
8 ...
9 }: {
10 wire = wire.makeHive {
11 meta = {
12 nixpkgs = import nixpkgs {
13 localSystem = "x86_64-linux";
14 };
15 specialArgs = {
16 inherit inputs;
17 };
18 };
19
20 defaults = {
21 # ...
22 };
23
24 node-a = {
25 nixpkgs.hostPlatform = "x86_64-linux";
26
27 # ...
28 };
29 };
30 };
31}