8 lines
168 B
Nix
8 lines
168 B
Nix
{ config, ... }:
|
|
{
|
|
fileSystems."/mnt/Windrive" = {
|
|
device = "/dev/disk/by-uuid/582C6B802C6B57D0";
|
|
fsType = "ntfs";
|
|
options = [ "nosuid" "nodev" ];
|
|
};
|
|
}
|