about summary refs log tree commit diff
path: root/machines/devhell
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2017-11-15 20:01:59 +0000
committerdevhell <devhell@mailfresser.de>2017-11-15 20:01:59 +0000
commit102cb856c7332e996323a6da5b3ca753050fb69a (patch)
tree24f3a325a89e10ab74e3b19837f13222b31e32ab /machines/devhell
parent697b61b27c140eb92354769e58f523b9b97b4ed6 (diff)
machines/{eris,titan}: Update mount options
Running kernel 4.14 allows btrfs with zstd compression, so let's enable
that and also remove "ssd" enforcement on eris.
Diffstat (limited to 'machines/devhell')
-rw-r--r--machines/devhell/eris.nix3
-rw-r--r--machines/devhell/titan.nix2
2 files changed, 2 insertions, 3 deletions
diff --git a/machines/devhell/eris.nix b/machines/devhell/eris.nix
index 37eb1c1d..12ada023 100644
--- a/machines/devhell/eris.nix
+++ b/machines/devhell/eris.nix
@@ -41,9 +41,8 @@
     options = [
       "autodefrag"
       "space_cache"
-      "compress=lzo"
+      "compress=zstd"
       "noatime"
-      "ssd"
     ];
   };
 
diff --git a/machines/devhell/titan.nix b/machines/devhell/titan.nix
index 28514cd0..91c6d43b 100644
--- a/machines/devhell/titan.nix
+++ b/machines/devhell/titan.nix
@@ -35,7 +35,7 @@
     fsType = "btrfs";
     options = [
       "space_cache"
-      "compress=lzo"
+      "compress=zstd"
       "noatime"
       "autodefrag"
     ];