Fixed faulty documentation
Fixed installation instructions for NixOS. The previous version failed due to trying to add the set `{ arion; doc; tests; }` to the list `environment.systemPackages`.
This commit is contained in:
parent
a356daaa86
commit
dfe1b63c4b
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ Add this module to your NixOS configuration:
|
|||
|
||||
```nix
|
||||
{ ... }: {
|
||||
environment.systemPackages = [ (import (builtins.fetchTarball https://github.com/hercules-ci/arion/tarball/master) {}) ];
|
||||
environment.systemPackages = [ (import (builtins.fetchTarball https://github.com/hercules-ci/arion/tarball/master) {}).arion ];
|
||||
virtualisation.docker.enable = true;
|
||||
users.extraUsers.myuser.extraGroups = ["docker"];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue