13 lines
No EOL
295 B
Nix
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;
|
|
} |