nix-flake/modules/hardware/misc/disks.nix
2026-03-06 21:06:47 +07:00

16 lines
No EOL
300 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;
};
};
}