nix-config/hosts/Anton/data.nix
2024-07-28 10:02:18 +02:00

15 lines
256 B
Nix

{ pkgs, ... }:
{
# environment.systemPackages = with pkgs; [
# mergerfs
# ];
fileSystems."/mnt/data" = {
device = "/dev/disk/by-id/wwn-0x500a0751e6b6c60f-part1";
fsType = "btrfs";
options = [" noatime=true compress=zstd:12 "];
};
}