nix-flake/modules/hardware/misc/disks.nix
satr14 5d082a11c3
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 28s
fix build error
2026-03-29 11:26:11 +07:00

19 lines
No EOL
429 B
Nix

{ lib, homelab, ... }: let
globalOpts = {
fsType = "ext4";
autoFormat = true;
autoResize = true;
};
in {
fileSystems = {
"/".autoResize = true;
} // lib.mapAttrs' (name: dev:
lib.nameValuePair "/mnt/${name}" (globalOpts // {
device = dev.path;
options = if dev.required == false then [
"nofail"
"x-systemd.automount"
] else [ "defaults" ];
})
) homelab.disks;
}