nixos-config/hosts/redmond/filesystems/default.nix
2025-07-13 19:53:15 -04:00

11 lines
184 B
Nix

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