summaryrefslogtreecommitdiff
path: root/hosts/toaster/zfs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/toaster/zfs.nix')
-rw-r--r--hosts/toaster/zfs.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/toaster/zfs.nix b/hosts/toaster/zfs.nix
index a7e9d7a..f4bdeea 100644
--- a/hosts/toaster/zfs.nix
+++ b/hosts/toaster/zfs.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, ... }: {
+{ pkgs, ... }: {
services.fstrim.enable = true;
services.zfs = {
autoSnapshot.enable = true;
@@ -14,6 +14,6 @@
supportedFilesystems = [ "zfs" ];
kernelParams = [ "nohibernate" ];
plymouth.enable = false;
- tmpOnTmpfs = true;
+ tmp.useTmpfs = true;
};
}