nix-flake/modules/hardware/misc/disks.nix
2026-03-07 19:15:53 +07:00

11 lines
No EOL
259 B
Nix

{ lib, homelab, ... }: let
globalOpts = {
fsType = "ext4";
autoFormat = true;
autoResize = true;
};
in {
fileSystems = lib.mapAttrs' (name: device:
lib.nameValuePair "/mnt/${name}" (globalOpts // { inherit device; })
) homelab.disks;
}