summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lib/types.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/types.nix b/lib/types.nix
index cd1d6277109..4e56cecf629 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -258,12 +258,12 @@ rec {
         u16 = unsign 16 65536;
         # the biggest int Nix accepts is 2^63 - 1 (9223372036854775808)
         # the smallest int Nix accepts is -2^63 (-9223372036854775807)
-        # u32 = unsign 32 4294967296;
+        u32 = unsign 32 4294967296;
         # u64 = unsign 64 18446744073709551616;
 
         s8 = sign 8 256;
         s16 = sign 16 65536;
-        # s32 = sign 32 4294967296;
+        s32 = sign 32 4294967296;
       };
 
     # Alias of u16 for a port number