11 lines
209 B
Nix
11 lines
209 B
Nix
{ ... }:
|
|
{
|
|
fileSystems = {
|
|
# Misc bulk storage
|
|
"/export/Bulk" = {
|
|
device = "/dev/disk/by-uuid/ef465845-cc56-4db5-9260-8ae515eb025e";
|
|
fsType = "btrfs";
|
|
noCheck = true;
|
|
};
|
|
};
|
|
}
|