about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2023-08-08 04:13:22 +0200
committerSilvan Mosberger <contact@infinisil.com>2023-08-08 04:13:22 +0200
commitc59c6b1c57da542b6b4af5d2ac27d1b99e7f0c5e (patch)
treeba5f4dd099105026cb7471f77f0f8fba6aef318b /lib
parent424c26cc219d2b872c450f268cc164fd1335e1f2 (diff)
lib.types.string: Deprecation error instead of warning
The type has given a warning on use since [4 years ago](03392cd336b128a1639c648baf0f6c1a1271e0d2), I think it's safe to move the deprecation to the next stage: An error instead of a warning.
Diffstat (limited to 'lib')
-rw-r--r--lib/types.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/types.nix b/lib/types.nix
index ddd37f260c9a6..b602d1d7f781f 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -436,10 +436,7 @@ rec {
 
     # Deprecated; should not be used because it quietly concatenates
     # strings, which is usually not what you want.
-    string = separatedString "" // {
-      name = "string";
-      deprecationMessage = "See https://github.com/NixOS/nixpkgs/pull/66346 for better alternative types.";
-    };
+    string = throw "The type `types.string` is deprecated. See https://github.com/NixOS/nixpkgs/pull/66346 for better alternative types.";
 
     passwdEntry = entryType: addCheck entryType (str: !(hasInfix ":" str || hasInfix "\n" str)) // {
       name = "passwdEntry ${entryType.name}";