nix-flake/modules/hardware/misc/disks.nix
2026-02-28 22:31:48 +07:00

16 lines
No EOL
294 B
Nix

{ homelab, ... }: let
globalOpts = {
fsType = "ext4";
autoFormat = true;
autoResize = true;
};
in {
fileSystems = {
"/mnt/share" = globalOpts // {
device = homelab.disks.share;
};
"/mnt/data" = globalOpts // {
device = homelab.disks.data;
};
};
}