nixos/shells-environment: remove floats again because of their unpredictable formatting

This commit is contained in:
Sandro Jäckel
2024-05-03 13:43:20 +02:00
committed by Florian Brandes
parent 0c3fbcfd19
commit 7a9eb007a9

View File

@@ -42,7 +42,7 @@ in
strings. The latter is concatenated, interspersed with colon
characters.
'';
type = with types; attrsOf (oneOf [ (listOf (oneOf [ float int str ])) float int str path ]);
type = with types; attrsOf (oneOf [ (listOf (oneOf [ int str ])) int str path ]);
apply = mapAttrs (n: v: if isList v then concatMapStringsSep ":" toString v else toString v);
};