summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-05-22 04:30:03 +1000
committerGitHub <noreply@github.com>2020-05-21 21:30:03 +0300
commitf4852591c1e2050ff3b12861f3950e36e15380be (patch)
tree7de165ce25d1dd0d5f6cb716215d981d2e30790f /nixos/modules/config
parent927b7795cbaf1ee045f2def83bb455cf7e8b75c4 (diff)
downloadnixpkgs-f4852591c1e2050ff3b12861f3950e36e15380be.tar
nixpkgs-f4852591c1e2050ff3b12861f3950e36e15380be.tar.gz
nixpkgs-f4852591c1e2050ff3b12861f3950e36e15380be.tar.bz2
nixpkgs-f4852591c1e2050ff3b12861f3950e36e15380be.tar.lz
nixpkgs-f4852591c1e2050ff3b12861f3950e36e15380be.tar.xz
nixpkgs-f4852591c1e2050ff3b12861f3950e36e15380be.tar.zst
nixpkgs-f4852591c1e2050ff3b12861f3950e36e15380be.zip
nixos/zram: make zstd the default (#87917)
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/zram.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/zram.nix b/nixos/modules/config/zram.nix
index 5d411c73a56..5e9870bf6b1 100644
--- a/nixos/modules/config/zram.nix
+++ b/nixos/modules/config/zram.nix
@@ -91,7 +91,7 @@ in
       };
 
       algorithm = mkOption {
-        default = "lzo";
+        default = "zstd";
         example = "lz4";
         type = with types; either (enum [ "lzo" "lz4" "zstd" ]) str;
         description = ''