From ccb3846596fa72db62b68f09c3e5864ec3a68796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 30 Jan 2020 14:26:54 +0000 Subject: [PATCH] lxd: also use default text for other package options --- nixos/modules/virtualisation/lxd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/virtualisation/lxd.nix b/nixos/modules/virtualisation/lxd.nix index 0e22fb544ad5..de48d3a780e2 100644 --- a/nixos/modules/virtualisation/lxd.nix +++ b/nixos/modules/virtualisation/lxd.nix @@ -31,6 +31,7 @@ in package = mkOption { type = types.package; default = pkgs.lxd; + defaultText = "pkgs.lxd"; description = '' The LXD package to use. ''; @@ -39,6 +40,7 @@ in lxcPackage = mkOption { type = types.package; default = pkgs.lxc; + defaultText = "pkgs.lxc"; description = '' The LXC package to use with LXD (required for AppArmor profiles). '';