summaryrefslogtreecommitdiffstats
path: root/tv/1systems/wu.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-02-27 15:39:53 +0100
committertv <tv@krebsco.de>2016-02-27 15:40:09 +0100
commitad9d704ac32c30a90dda792b9ce983cd2166bcc1 (patch)
tree344cbeab90a7750e696e73822e1b16358bf79576 /tv/1systems/wu.nix
parent766cd8cbf0945653381546fd6834d3df82e15bdf (diff)
tv: mute random new filesystem option deprecation warning
Diffstat (limited to 'tv/1systems/wu.nix')
-rw-r--r--tv/1systems/wu.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/tv/1systems/wu.nix b/tv/1systems/wu.nix
index d64deaf9..0bf24210 100644
--- a/tv/1systems/wu.nix
+++ b/tv/1systems/wu.nix
@@ -127,12 +127,12 @@ with config.krebs.lib;
"/" = {
device = "/dev/mapper/vg840-wuroot";
fsType = "btrfs";
- options = "defaults,noatime,ssd,compress=lzo";
+ options = ["defaults" "noatime" "ssd" "compress=lzo"];
};
"/home" = {
device = "/dev/mapper/home";
fsType = "btrfs";
- options = "defaults,noatime,ssd,compress=lzo";
+ options = ["defaults" "noatime" "ssd" "compress=lzo"];
};
"/boot" = {
device = "/dev/sda1";
@@ -140,7 +140,7 @@ with config.krebs.lib;
"/tmp" = {
device = "tmpfs";
fsType = "tmpfs";
- options = "nosuid,nodev,noatime";
+ options = ["nosuid" "nodev" "noatime"];
};
};