From c358cb2c098a153018c34c63902f46b19adb90ca Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Wed, 11 Oct 2023 21:30:06 +0200 Subject: [PATCH] Add zfs drive to mount --- systems/kami/hardware.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/systems/kami/hardware.nix b/systems/kami/hardware.nix index 9a1de9d..933fb76 100644 --- a/systems/kami/hardware.nix +++ b/systems/kami/hardware.nix @@ -25,8 +25,6 @@ zramSwap.enable = true; - boot.supportedFilesystems = ["zfs"]; - fileSystems = { "/" = { device = "/dev/disk/by-uuid/99a47ace-7e69-4520-b914-d4fe5b31dc79"; @@ -46,6 +44,10 @@ fsType = "ntfs"; options = [ "rw" "uid=1000"]; }; + "/media/zfs" = { + device = "jopejoe1"; + fsType = "zfs"; + }; }; swapDevices = [ ];