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.

cut v1.3.0

+9 -7
+2
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] - yyyy-mm-dd 9 9 10 + ## [v1.3.0] - 2026-05-02 11 + 10 12 ### Added 11 13 12 14 - "Encrypting with Sops" documentation example.
+3 -3
Cargo.lock
··· 3223 3223 3224 3224 [[package]] 3225 3225 name = "wire" 3226 - version = "1.2.0" 3226 + version = "1.3.0" 3227 3227 dependencies = [ 3228 3228 "clap", 3229 3229 "clap-markdown", ··· 3250 3250 3251 3251 [[package]] 3252 3252 name = "wire-core" 3253 - version = "1.2.0" 3253 + version = "1.3.0" 3254 3254 dependencies = [ 3255 3255 "aho-corasick", 3256 3256 "anyhow", ··· 3287 3287 3288 3288 [[package]] 3289 3289 name = "wire-key-agent" 3290 - version = "1.2.0" 3290 + version = "1.3.0" 3291 3291 dependencies = [ 3292 3292 "anyhow", 3293 3293 "base64",
+1 -1
Cargo.toml
··· 2 2 members = ["crates/key_agent", "crates/core", "crates/cli"] 3 3 resolver = "2" 4 4 package.edition = "2024" 5 - package.version = "1.2.0" 5 + package.version = "1.3.0" 6 6 7 7 [workspace.metadata.crane] 8 8 name = "wire"
+1 -1
doc/guides/installation.md
··· 51 51 Alternatively, you can use a tag instead: 52 52 53 53 ```sh 54 - $ npins add github forallsys wire --at v1.2.0 54 + $ npins add github forallsys wire --at v1.3.0 55 55 ``` 56 56 57 57 Then, use this pinned version of wire for both your `hive.nix` and `shell.nix`:
+1 -1
doc/package.json
··· 1 1 { 2 2 "name": "wire-docs", 3 - "version": "1.2.0", 3 + "version": "1.3.0", 4 4 "type": "module", 5 5 "devDependencies": { 6 6 "vitepress": "^1.6.4",
+1 -1
doc/snippets/guides/installation/flake.nix
··· 4 4 wire.url = "github:forallsys/wire/stable"; 5 5 6 6 # alternatively, you can use a tag instead: 7 - # wire.url = "github:forallsys/wire/v1.2.0"; 7 + # wire.url = "github:forallsys/wire/v1.3.0"; 8 8 9 9 systems.url = "github:nix-systems/default"; 10 10 };