add disk config

This commit is contained in:
Satria 2026-02-28 22:21:36 +07:00
commit f6968d22a6
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ homelab, ... }: {
fileSystems = {
"/mnt/share" = {
device = homelab.disks.share;
fsType = "ext4";
};
"/mnt/data" = {
device = homelab.disks.data;
fsType = "ext4";
};
};
}