ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

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

replace { system } with { localSystem }

marshmallow fc2b9d7a de74038c

+5 -5
+1 -1
doc/snippets/getting-started/flake.nix
··· 10 10 wire = wire.makeHive { 11 11 meta = { 12 12 nixpkgs = import nixpkgs { 13 - system = "x86_64-linux"; 13 + localSystem = "x86_64-linux"; 14 14 }; 15 15 specialArgs = { 16 16 inherit inputs;
+1 -1
tests/nix/suite/test_keys/hive.nix
··· 2 2 inherit (import ../utils.nix { testName = "test_keys-@IDENT@"; }) makeHive mkHiveNode; 3 3 in 4 4 makeHive { 5 - meta.nixpkgs = import <nixpkgs> { system = "x86_64-linux"; }; 5 + meta.nixpkgs = import <nixpkgs> { localSystem = "x86_64-linux"; }; 6 6 defaults = { 7 7 deployment.keys = { 8 8 source_string = {
+1 -1
tests/nix/suite/test_local_deploy/hive.nix
··· 2 2 inherit (import ../utils.nix { testName = "test_keys-@IDENT@"; }) makeHive mkHiveNode; 3 3 in 4 4 makeHive { 5 - meta.nixpkgs = import <nixpkgs> { system = "x86_64-linux"; }; 5 + meta.nixpkgs = import <nixpkgs> { localSystem = "x86_64-linux"; }; 6 6 deployer = mkHiveNode { hostname = "deployer"; } { 7 7 environment.etc."a".text = "b"; 8 8 };
+1 -1
tests/nix/suite/test_remote_deploy/hive.nix
··· 2 2 inherit (import ../utils.nix { testName = "test_keys-@IDENT@"; }) makeHive mkHiveNode; 3 3 in 4 4 makeHive { 5 - meta.nixpkgs = import <nixpkgs> { system = "x86_64-linux"; }; 5 + meta.nixpkgs = import <nixpkgs> { localSystem = "x86_64-linux"; }; 6 6 7 7 receiver = mkHiveNode { hostname = "receiver"; } { 8 8 environment.etc."identity".text = "first";
+1 -1
tests/rust/flake_hive/flake.nix
··· 9 9 { 10 10 wire = makeHive { 11 11 inherit (self) nixosConfigurations; 12 - meta.nixpkgs = import nixpkgs { system = "x86_64-linux"; }; 12 + meta.nixpkgs = import nixpkgs { localSystem = "x86_64-linux"; }; 13 13 14 14 node-a = { }; 15 15 node-b = {