forked from DGNum/colmena
Misc doc tweaks
This commit is contained in:
parent
e7d4792634
commit
c088925e0d
3 changed files with 6 additions and 5 deletions
|
@ -39,5 +39,5 @@ You can then deploy to the `rpi` node with `colmena apply --on rpi`.
|
||||||
|
|
||||||
## Building Remotely
|
## Building Remotely
|
||||||
|
|
||||||
If the remote nodes are powerful enough, you may also want to execute builds on them directly.
|
If the remote nodes are powerful enough, you may also execute builds on them directly.
|
||||||
See [Remote Builds](../features/remote-builds.md) for more details.
|
See [Remote Builds](../features/remote-builds.md) for more details.
|
||||||
|
|
|
@ -16,7 +16,6 @@ If you are interested in trying out the bleeding-edge version of Colmena, Read [
|
||||||
<!-- STABLE_END -->
|
<!-- STABLE_END -->
|
||||||
|
|
||||||
<!-- UNSTABLE_BEGIN -->
|
<!-- UNSTABLE_BEGIN -->
|
||||||
<!-- To install the latest stable version, read [the corresponding Manual](https://zhaofengli.github.io/colmena/stable) for instructions. -->
|
|
||||||
|
|
||||||
To install the latest development version to the user profile, use the following command:
|
To install the latest development version to the user profile, use the following command:
|
||||||
|
|
||||||
|
@ -24,6 +23,8 @@ To install the latest development version to the user profile, use the following
|
||||||
nix-env -if https://github.com/zhaofengli/colmena/tarball/main
|
nix-env -if https://github.com/zhaofengli/colmena/tarball/main
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To install the latest stable version, read [the corresponding Manual](https://zhaofengli.github.io/colmena/stable) for instructions.
|
||||||
|
|
||||||
### Unstable Binary Cache
|
### Unstable Binary Cache
|
||||||
|
|
||||||
A public binary cache is available at [https://colmena.cachix.org](https://colmena.cachix.org), courtesy of Cachix.
|
A public binary cache is available at [https://colmena.cachix.org](https://colmena.cachix.org), courtesy of Cachix.
|
||||||
|
|
|
@ -21,7 +21,7 @@ let
|
||||||
options = {
|
options = {
|
||||||
name = lib.mkOption {
|
name = lib.mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Name of the configuration.
|
The name of the configuration.
|
||||||
'';
|
'';
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "hive";
|
default = "hive";
|
||||||
|
@ -35,7 +35,7 @@ let
|
||||||
};
|
};
|
||||||
nixpkgs = lib.mkOption {
|
nixpkgs = lib.mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Pinned Nixpkgs. Accepts one of the following:
|
The pinned Nixpkgs package set. Accepts one of the following:
|
||||||
|
|
||||||
- A path to a Nixpkgs checkout
|
- A path to a Nixpkgs checkout
|
||||||
- The Nixpkgs lambda (e.g., import <nixpkgs>)
|
- The Nixpkgs lambda (e.g., import <nixpkgs>)
|
||||||
|
@ -48,7 +48,7 @@ let
|
||||||
};
|
};
|
||||||
nodeNixpkgs = lib.mkOption {
|
nodeNixpkgs = lib.mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
Node-specific Nixpkgs overrides.
|
Node-specific Nixpkgs pins.
|
||||||
'';
|
'';
|
||||||
type = types.attrsOf types.unspecified;
|
type = types.attrsOf types.unspecified;
|
||||||
default = {};
|
default = {};
|
||||||
|
|
Loading…
Add table
Reference in a new issue