mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
feat: use ntfs for /data
This commit is contained in:
parent
a06256869c
commit
78aa8051fb
2 changed files with 4 additions and 2 deletions
|
@ -22,8 +22,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/data" =
|
fileSystems."/data" =
|
||||||
{ device = "/dev/disk/by-uuid/7a421877-5b4e-4521-b284-67cba04d8dc0";
|
{ device = "/dev/disk/by-uuid/6646713B46710CD5";
|
||||||
fsType = "ext4";
|
fsType = "ntfs-3g";
|
||||||
|
options = [ "rw" "uid=1000" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
|
@ -3,4 +3,5 @@
|
||||||
{
|
{
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
boot.supportedFilesystems = [ "ntfs" ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue