snowflake/system/filesystems.nix
2025-05-30 22:59:38 +08:00

15 lines
303 B
Nix

{
fileSystems = {
"/ar1" = {
device = "/dev/disk/by-uuid/AEDEBC24DEBBE2AF";
fsType = "ntfs-3g";
options = [ "rw" "uid=1000" ];
};
"/win" = {
device = "/dev/disk/by-uuid/DA820CCE820CB155";
fsType = "ntfs-3g";
options = [ "rw" "uid=1000" ];
};
};
}