ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
at trunk 22 lines 354 B view raw
1# SPDX-License-Identifier: AGPL-3.0-or-later 2# Copyright 2024-2025 wire Contributors 3 4let 5 inherit (import ../../..) makeHive; 6in 7makeHive { 8 meta = { 9 nixpkgs = <nixpkgs>; 10 }; 11 12 node-a = { 13 deployment._keys = [ 14 { 15 name = "different-than-a"; 16 source = "hi"; 17 } 18 ]; 19 20 nixpkgs.hostPlatform = "x86_64-linux"; 21 }; 22}