From 508f09b044654335722ad83078ad07aeac608b73 Mon Sep 17 00:00:00 2001 From: Till Date: Tue, 2 Sep 2025 21:54:31 +0200 Subject: [PATCH] ext4 harddrive --- system/hardware/homer.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/system/hardware/homer.nix b/system/hardware/homer.nix index 464c914..136157c 100644 --- a/system/hardware/homer.nix +++ b/system/hardware/homer.nix @@ -41,14 +41,12 @@ }; fileSystems."/var/mediathek" = { - device = "/dev/disk/by-uuid/d6df2368-015f-4da6-9173-c8c7cdc8acc2"; - fsType = "btrfs"; + device = "/dev/disk/by-uuid/7b0b589f-5759-411a-975a-08a3c7a0f953"; + fsType = "ext3"; options = [ # If you don't have this options attribute, it'll default to "defaults" # boot options for fstab. Search up fstab mount options you can use "users" # Allows any user to mount and unmount "nofail" # Prevent system from failing if this drive doesn't mount - "compress=zstd" - "noatime" ]; };