11 lines
201 B
Nix
11 lines
201 B
Nix
{ ... }:
|
|
{
|
|
fileSystems."/persist/storage" = {
|
|
device = "/dev/disk/by-uuid/ef465845-cc56-4db5-9260-8ae515eb025e";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
}
|