about summary refs log tree commit diff
path: root/lib/modules.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/modules.nix')
-rw-r--r--lib/modules.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/modules.nix b/lib/modules.nix
index 0c9c88d2b6139..093a901ff3d63 100644
--- a/lib/modules.nix
+++ b/lib/modules.nix
@@ -916,19 +916,11 @@ rec {
     */
     sinceRelease,
 
-    /*
-      Options intended for reading by user modules/configuration should set this
-      to false.
-
-      Usually the user modules don't read the option and we want to hold nixpkgs
-      itself to a high standard immediately.
-      */
-    warnWhenRead ? true
   }: doRename {
     inherit from to;
     visible = false;
     warn = lib.isInOldestRelease sinceRelease;
-    use = lib.warnIf (warnWhenRead || lib.isInOldestRelease sinceRelease)
+    use = lib.warnIf (lib.isInOldestRelease sinceRelease)
       "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'.";
   };