summary refs log tree commit diff
path: root/nixos/modules/services/networking/consul.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-02-17 20:22:56 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-02-17 21:12:24 +0100
commit7bdcfb33f4cb21021833d5a0adbf02b3099bc37c (patch)
tree9f0929ae6e72ad40442081a208a1469be34ccefa /nixos/modules/services/networking/consul.nix
parent60c7bd1237696bfb1db3e191be427a51aaf7909f (diff)
downloadnixpkgs-7bdcfb33f4cb21021833d5a0adbf02b3099bc37c.tar
nixpkgs-7bdcfb33f4cb21021833d5a0adbf02b3099bc37c.tar.gz
nixpkgs-7bdcfb33f4cb21021833d5a0adbf02b3099bc37c.tar.bz2
nixpkgs-7bdcfb33f4cb21021833d5a0adbf02b3099bc37c.tar.lz
nixpkgs-7bdcfb33f4cb21021833d5a0adbf02b3099bc37c.tar.xz
nixpkgs-7bdcfb33f4cb21021833d5a0adbf02b3099bc37c.tar.zst
nixpkgs-7bdcfb33f4cb21021833d5a0adbf02b3099bc37c.zip
nixos: Provide a defaultText for type = package
We don't want to build all those things along with the manual, so that's
what the defaultText attribute is for.

Unfortunately a few of them were missing, so let's add them.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixos/modules/services/networking/consul.nix')
-rw-r--r--nixos/modules/services/networking/consul.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/consul.nix b/nixos/modules/services/networking/consul.nix
index 58dad56014b..2aa101f980d 100644
--- a/nixos/modules/services/networking/consul.nix
+++ b/nixos/modules/services/networking/consul.nix
@@ -33,6 +33,7 @@ in
       package = mkOption {
         type = types.package;
         default = pkgs.consul;
+        defaultText = "pkgs.consul";
         description = ''
           The package used for the Consul agent and CLI.
         '';