mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 09:28:27 +02:00
13 lines
282 B
Nix
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"];
|
|
};
|
|
}
|