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:
parent
d7ec33e70a
commit
fce17e443e
1 changed files with 3 additions and 5 deletions
|
|
@ -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" = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue