feat: use ntfs for /data

This commit is contained in:
lightly-toasted 2025-08-16 01:20:32 +09:00
parent a06256869c
commit 78aa8051fb
2 changed files with 4 additions and 2 deletions

View file

@ -22,8 +22,9 @@
};
fileSystems."/data" =
{ device = "/dev/disk/by-uuid/7a421877-5b4e-4521-b284-67cba04d8dc0";
fsType = "ext4";
{ device = "/dev/disk/by-uuid/6646713B46710CD5";
fsType = "ntfs-3g";
options = [ "rw" "uid=1000" ];
};
swapDevices = [ ];

View file

@ -3,4 +3,5 @@
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "ntfs" ];
}