fix(x1): update filesystem configuration

- Switched root filesystem from Btrfs to XFS for improved performance and simplicity.
- Updated the UUID and mount options accordingly.
- Removed unused Btrfs auto-scrub service as it is no longer required.
This commit is contained in:
Harald Hoyer 2026-01-20 10:44:02 +01:00
parent d7ec33e70a
commit fce17e443e

View file

@ -56,13 +56,11 @@
}; };
}; };
services.btrfs.autoScrub.enable = true;
fileSystems = { fileSystems = {
"/" = { "/" = {
device = "/dev/disk/by-uuid/1106202c-c3bf-4c15-b7cd-e78749e5c955"; device = "/dev/disk/by-uuid/1b36718e-ab21-4b1d-8f3e-6d28bfe6f082";
fsType = "btrfs"; fsType = "xfs";
options = [ "subvol=@" ]; options = [ "noatime" ];
}; };
"/boot" = { "/boot" = {