···13131414- Manpages for `1` & `5`, including subcommands.
15151616+### Changed
1717+1818+- The domain for documentation to be `wire.forall.systems`. The previous URL
1919+ will continue to be available but may redirect in the future.
2020+1621### Fixed
17221823- Fix a bug where key permissions where being printed in decimal format instead
+1-1
README.md
···4455wire is a tool to deploy nixos systems. its usage is inspired by colmena however it is not a fork.
6677-Read the [The Tutorial](https://wire.althaea.zone/tutorial/overview.html), [Guides](https://wire.althaea.zone/guides/installation.html), or continue reading this readme for development information.
77+Read the [The Tutorial](https://wire.forall.systems/tutorial/overview.html), [Guides](https://wire.forall.systems/guides/installation.html), or continue reading this readme for development information.
8899## Development
1010
+1-1
crates/core/src/commands/common.rs
···2222 if let CommandError::CommandFailed { logs, .. } = error
2323 && (logs.contains("error: unexpected end-of-file"))
2424 {
2525- Some("wire requires the deploying user or wire binary cache is trusted on the remote server. if you're attempting to make that change, skip keys with --no-keys. please read https://wire.althaea.zone/guides/keys for more information".to_string())
2525+ Some("wire requires the deploying user or wire binary cache is trusted on the remote server. if you're attempting to make that change, skip keys with --no-keys. please read https://wire.forall.systems/guides/keys for more information".to_string())
2626 } else {
2727 None
2828 }
···3636 user = lib.mkOption {
3737 type = types.str;
3838 description = "User to use for SSH. The user must be atleast `wheel` and must use an SSH key or similar
3939- non-interactive login method. More information can be found at https://wire.althaea.zone/guides/non-root-user";
3939+ non-interactive login method. More information can be found at https://wire.forall.systems/guides/non-root-user";
4040 default = "root";
4141 };
4242 port = lib.mkOption {