nix-flake/modules/hardware/misc/disks.nix
2026-03-08 22:13:09 +07:00

13 lines
No EOL
295 B
Nix

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