From bf5170c67f306f2dd6b427794c507523761dd9fc Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Tue, 16 Apr 2024 03:02:23 +0000 Subject: [PATCH] backyard: enable zfs --- machine/backyard/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/machine/backyard/default.nix b/machine/backyard/default.nix index 8b58743..ef27f93 100644 --- a/machine/backyard/default.nix +++ b/machine/backyard/default.nix @@ -11,6 +11,12 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + # ZFS support + boot.supportedFilesystems = [ "zfs" ]; + networking.hostId = "64cc144d"; + # https://old.reddit.com/r/zfs/comments/1826lgs/psa_its_not_block_cloning_its_a_data_corruption/ + boot.kernelParams = [ "zfs.zfs_dmu_offset_next_sync=0" ]; + beatific.hostName = "backyard"; beatific.defaults.tvbSync = false;