nix-config/hosts/Anton/data.nix

15 lines
256 B
Nix
Raw Normal View History

2024-07-06 21:33:59 +02:00
{ pkgs, ... }:
{
2024-07-28 10:02:18 +02:00
# environment.systemPackages = with pkgs; [
# mergerfs
# ];
fileSystems."/mnt/data" = {
device = "/dev/disk/by-id/wwn-0x500a0751e6b6c60f-part1";
fsType = "btrfs";
options = [" noatime=true compress=zstd:12 "];
2024-07-06 21:33:59 +02:00
};
2024-07-28 10:02:18 +02:00
}