Files
nix-config-ryan4yin/hosts/idols-aquamarine/filesystems.nix
2024-07-31 09:43:30 +08:00

13 lines
282 B
Nix

{
fileSystems."/data/downloads" = {
device = "/dev/disk/by-label/Downloads";
fsType = "ntfs-3g";
options = ["rw" "uid=1000"];
};
fileSystems."/data/games" = {
device = "/dev/disk/by-label/Games";
fsType = "ntfs-3g";
options = ["rw" "uid=1000"];
};
}