11 lines
No EOL
259 B
Nix
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;
|
|
} |