about summary refs log tree commit diff
path: root/lib/systems.nix
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-02-26 18:53:47 +0000
committerzimbatm <zimbatm@zimbatm.com>2016-02-26 22:15:41 +0000
commit07b1f78b948e3a3504ea8ac4107a8490d8ff97df (patch)
tree1a95c785b8259c4b30d5474041ac172d6d36edb0 /lib/systems.nix
parent6e5a748224009c5f9ccf2be4f48ee2bf06b67fdc (diff)
lib: alphabetize things
Diffstat (limited to 'lib/systems.nix')
-rw-r--r--lib/systems.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/systems.nix b/lib/systems.nix
index 25a83e9d14fa1..92d8bdf892b41 100644
--- a/lib/systems.nix
+++ b/lib/systems.nix
@@ -84,10 +84,10 @@ rec {
   };
 
 
+  is64Bit = matchAttrs { cpu = { bits = 64; }; };
   isDarwin = matchAttrs { kernel = kernels.darwin; };
-  isLinux = matchAttrs { kernel = kernels.linux; };
   isi686 = matchAttrs { cpu = cpuTypes.i686; };
-  is64Bit = matchAttrs { cpu = { bits = 64; }; };
+  isLinux = matchAttrs { kernel = kernels.linux; };
 
 
   # This should revert the job done by config.guess from the gcc compiler.