summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-08-24 13:33:34 -0700
committerJon <jonringer@users.noreply.github.com>2020-08-25 09:13:13 -0700
commit7e07d142e78656c5f16b18d81ee4eb9444c9b93d (patch)
treead12a3a8b450f93e5b1e538fb3ff2f72330f842a
parentd9e6beab26fea286c4d2a31c6c9d52c608214a40 (diff)
downloadnixpkgs-7e07d142e78656c5f16b18d81ee4eb9444c9b93d.tar
nixpkgs-7e07d142e78656c5f16b18d81ee4eb9444c9b93d.tar.gz
nixpkgs-7e07d142e78656c5f16b18d81ee4eb9444c9b93d.tar.bz2
nixpkgs-7e07d142e78656c5f16b18d81ee4eb9444c9b93d.tar.lz
nixpkgs-7e07d142e78656c5f16b18d81ee4eb9444c9b93d.tar.xz
nixpkgs-7e07d142e78656c5f16b18d81ee4eb9444c9b93d.tar.zst
nixpkgs-7e07d142e78656c5f16b18d81ee4eb9444c9b93d.zip
nixos/octoprint: improve example
-rw-r--r--nixos/modules/services/misc/octoprint.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/misc/octoprint.nix b/nixos/modules/services/misc/octoprint.nix
index 7a71d2c8c6a..e2fbd3b401c 100644
--- a/nixos/modules/services/misc/octoprint.nix
+++ b/nixos/modules/services/misc/octoprint.nix
@@ -68,8 +68,8 @@ in
       plugins = mkOption {
         default = plugins: [];
         defaultText = "plugins: []";
-        example = literalExample "plugins: [ m3d-fio ]";
-        description = "Additional plugins.";
+        example = literalExample "plugins: with plugins; [ m33-fio stlviewer ]";
+        description = "Additional plugins to be used. Available plugins are passed through the plugins input.";
       };
 
       extraConfig = mkOption {