diff options
| author | Malo Bourgon <mbourgon@gmail.com> | 2022-08-29 15:39:16 -0700 |
|---|---|---|
| committer | Malo Bourgon <mbourgon@gmail.com> | 2022-08-29 15:39:16 -0700 |
| commit | 5fa362c32f7a20ee1fb4baf7f23dc5128da6affe (patch) | |
| tree | fc666fb6e991a661b2e955c1454f7c53c74ecbbe /modules/nix/default.nix | |
| parent | 157a3c3c4ea482317a4eb4ea2c41db4f16c82420 (diff) | |
Transition to using native floats
Diffstat (limited to 'modules/nix/default.nix')
| -rw-r--r-- | modules/nix/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nix/default.nix b/modules/nix/default.nix index 2588d3b..528c304 100644 --- a/modules/nix/default.nix +++ b/modules/nix/default.nix @@ -37,7 +37,7 @@ let if v == null then "" else if isInt v then toString v else if isBool v then boolToString v - else if isFloat v then floatToString v + else if isFloat v then strings.floatToString v else if isList v then toString v else if isDerivation v then toString v else if builtins.isPath v then toString v |
