about summary refs log tree commit diff
path: root/machines/aszlig/mmrnmhrm.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-02-15 10:26:57 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-02-15 10:26:57 +0100
commitf6c907557a1206e83a7678158f90f83c6840eaf4 (patch)
tree7e59b3cc362e3e86f4f4d9bf37149d133990d2a2 /machines/aszlig/mmrnmhrm.nix
parentc52934a661705888f077e93d304a5d64df94198f (diff)
machines/aszlig: Use lists for filesystem options
We had this since NixOS/nixpkgs@3c5fca9 and since the merge of master
into closure-size (NixOS/nixpkgs@d039c87) we also have it there, so
there is no excuse now to not switch to lists, especially because we
already used concatStringsSep on lists anyway.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'machines/aszlig/mmrnmhrm.nix')
-rw-r--r--machines/aszlig/mmrnmhrm.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/machines/aszlig/mmrnmhrm.nix b/machines/aszlig/mmrnmhrm.nix
index 49826d9b..b9d422e6 100644
--- a/machines/aszlig/mmrnmhrm.nix
+++ b/machines/aszlig/mmrnmhrm.nix
@@ -23,12 +23,7 @@ with lib;
     "/" = {
       label = "root";
       fsType = "btrfs";
-      options = concatStringsSep "," [
-        "autodefrag"
-        "space_cache"
-        "compress=lzo"
-        "noatime"
-      ];
+      options = [ "autodefrag" "space_cache" "compress=lzo" "noatime" ];
     };
   };