From f6c907557a1206e83a7678158f90f83c6840eaf4 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 15 Feb 2016 10:26:57 +0100 Subject: 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 --- machines/aszlig/arilou.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'machines/aszlig/arilou.nix') diff --git a/machines/aszlig/arilou.nix b/machines/aszlig/arilou.nix index b9a1c87d..469d6de9 100644 --- a/machines/aszlig/arilou.nix +++ b/machines/aszlig/arilou.nix @@ -25,7 +25,7 @@ in { fileSystems."/".device = "/dev/disk/by-uuid/${rootUUID}"; fileSystems."/".fsType = "btrfs"; - fileSystems."/".options = concatStringsSep "," [ + fileSystems."/".options = [ "ssd" "space_cache" "compress-force=zlib" @@ -34,7 +34,7 @@ in { fileSystems."/tmp".device = "none"; fileSystems."/tmp".fsType = "tmpfs"; - fileSystems."/tmp".options = "nosuid,nodev,relatime"; + fileSystems."/tmp".options = [ "nosuid" "nodev" "relatime" ]; swapDevices = singleton { device = "/dev/disk/by-uuid/${swapUUID}"; -- cgit 1.4.1