server9: add zfs mounts to hardware configuration

This commit is contained in:
Markus Schmidl 2022-06-29 20:17:45 +02:00
parent 763d7203db
commit 6025d3d9c9
1 changed files with 35 additions and 0 deletions

View File

@ -24,6 +24,41 @@
fsType = "vfat";
};
fileSystems."/tank" =
{ device = "tank";
fsType = "zfs";
};
fileSystems."/tank/poelzi" =
{ device = "tank/poelzi";
fsType = "zfs";
};
fileSystems."/tank/storage" =
{ device = "tank/storage";
fsType = "zfs";
};
fileSystems."/tank/backup_vms_ceph_migration" =
{ device = "tank/backup_vms_ceph_migration";
fsType = "zfs";
};
fileSystems."/tank/dump-dvb-iq-storage" =
{ device = "tank/dump-dvb-iq-storage";
fsType = "zfs";
};
fileSystems."/tank/storage/ftp" =
{ device = "tank/storage/ftp";
fsType = "zfs";
};
fileSystems."/tank/storage/stream" =
{ device = "tank/storage/stream";
fsType = "zfs";
};
swapDevices = [ ];
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;