about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-12-25 21:39:52 +0100
committerGitHub <noreply@github.com>2022-12-25 21:39:52 +0100
commitf3ae2deafb0dd0c5dd4fb2716dcda83b209bd719 (patch)
tree9a576dc0bdaa6e053463723de29c3eccc5fa3c56 /lib
parent8e7c15dc63971518c32b059a3587379ff8901587 (diff)
parentc8c538f2ab2432f2dd1eb637657c1bf5b54a147f (diff)
Merge pull request #206809 from SuperSandro2000/loaOf
Diffstat (limited to 'lib')
-rw-r--r--lib/types.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 270ac1748c796..e7e8a99e5743b 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -558,15 +558,6 @@ rec {
       nestedTypes.elemType = elemType;
     };
 
-    # TODO: drop this in the future:
-    loaOf = elemType: types.attrsOf elemType // {
-      name = "loaOf";
-      deprecationMessage = "Mixing lists with attribute values is no longer"
-        + " possible; please use `types.attrsOf` instead. See"
-        + " https://github.com/NixOS/nixpkgs/issues/1800 for the motivation.";
-      nestedTypes.elemType = elemType;
-    };
-
     # Value of given type but with no merging (i.e. `uniq list`s are not concatenated).
     uniq = elemType: mkOptionType rec {
       name = "uniq";