puter/hosts/headless/abacus/filesystems.nix

15 lines
275 B
Nix
Raw Normal View History

2025-03-01 21:21:00 +00:00
{config, ...}: {
fileSystems = {
"/" = {
fsType = "ext4";
label = "main";
options = ["noatime"];
};
${config.services.navidrome.settings.MusicFolder} = {
label = "music";
fsType = "ext4";
options = ["noatime"];
};
};
}