13 lines
238 B
Nix
Executable File
13 lines
238 B
Nix
Executable File
{ ... }:
|
|
let
|
|
defaultOptions = [ "compress=zstd" ];
|
|
in
|
|
{
|
|
fileSystems."/mnt" = {
|
|
label = "nas_pool";
|
|
# device = "/dev/sde:/dev/sdf:/dev/sdh:/dev/sdi:/dev/:sdj";
|
|
fsType = "bcachefs";
|
|
mountPoint = "/media/nas/main";
|
|
};
|
|
}
|