From dfe1b63c4b9edba32c0f77b7350add5e25bfffaf Mon Sep 17 00:00:00 2001 From: paumr <53442728+paumr@users.noreply.github.com> Date: Mon, 29 Jul 2019 18:24:32 +0200 Subject: [PATCH] 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`. --- README.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.asciidoc b/README.asciidoc index 725f3c3..459b0b8 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -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"]; }