nixos-config/hosts/prophet/filesystems/default.nix

12 lines
209 B
Nix
Raw Normal View History

2025-01-01 18:42:31 -05:00
{ ... }:
{
fileSystems = {
# Misc bulk storage
2025-01-01 18:42:31 -05:00
"/export/Bulk" = {
device = "/dev/disk/by-uuid/ef465845-cc56-4db5-9260-8ae515eb025e";
fsType = "btrfs";
noCheck = true;
};
};
}