diff options
author | makefu <github@syntax-fehler.de> | 2016-04-01 14:28:16 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-04-01 14:28:16 +0200 |
commit | b297544847b71cd8759bc6d1feeb4c80e7094270 (patch) | |
tree | f200d284c3a3c970d807559ad04057427b3c425a /makefu/2configs/fs | |
parent | a8c76186998c6ae0c10f948aef6a32567871ae44 (diff) |
ma 2 fs: use list of strings for options
Diffstat (limited to 'makefu/2configs/fs')
-rw-r--r-- | makefu/2configs/fs/sda-crypto-root-home.nix | 2 | ||||
-rw-r--r-- | makefu/2configs/fs/sda-crypto-root.nix | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/makefu/2configs/fs/sda-crypto-root-home.nix b/makefu/2configs/fs/sda-crypto-root-home.nix index 5214cf872..1ef0d69e9 100644 --- a/makefu/2configs/fs/sda-crypto-root-home.nix +++ b/makefu/2configs/fs/sda-crypto-root-home.nix @@ -19,7 +19,7 @@ with config.krebs.lib; "/home" = { device = "/dev/mapper/main-home"; fsType = "ext4"; - options="defaults,discard"; + options = [ "defaults" "discard" ]; }; }; } diff --git a/makefu/2configs/fs/sda-crypto-root.nix b/makefu/2configs/fs/sda-crypto-root.nix index e9d7b755a..b82c0e44e 100644 --- a/makefu/2configs/fs/sda-crypto-root.nix +++ b/makefu/2configs/fs/sda-crypto-root.nix @@ -18,12 +18,12 @@ with config.krebs.lib; "/" = { device = "/dev/mapper/luksroot"; fsType = "ext4"; - options="defaults,discard"; + options = [ "defaults" "discard" ]; }; "/boot" = { device = "/dev/disk/by-label/nixboot"; fsType = "ext4"; - options="defaults,discard"; + options = [ "defaults" "discard" ]; }; }; } |