Files
nix-config/systems/x86_64-linux/nas/filesystems.nix
mjallen18 c053da2e30 bcachefs
2025-08-17 21:01:59 -05:00

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";
};
}