about summary refs log tree commit diff
path: root/nixpkgs/doc/using/configuration.xml
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/doc/using/configuration.xml')
-rw-r--r--nixpkgs/doc/using/configuration.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/doc/using/configuration.xml b/nixpkgs/doc/using/configuration.xml
index 1e1df867e08e..2cd2615f54ae 100644
--- a/nixpkgs/doc/using/configuration.xml
+++ b/nixpkgs/doc/using/configuration.xml
@@ -138,11 +138,11 @@
 </programlisting>
     </para>
     <para>
-     For a more useful example, try the following. This configuration only allows unfree packages named flash player and visual studio code:
+     For a more useful example, try the following. This configuration only allows unfree packages named roon-server and visual studio code:
 <programlisting>
 {
   allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
-    "flashplayer"
+    "roon-server"
     "vscode"
   ];
 }