puter/hosts/headless/abacus/filesystems.nix
2025-03-01 22:21:00 +01:00

15 lines
275 B
Nix

{config, ...}: {
fileSystems = {
"/" = {
fsType = "ext4";
label = "main";
options = ["noatime"];
};
${config.services.navidrome.settings.MusicFolder} = {
label = "music";
fsType = "ext4";
options = ["noatime"];
};
};
}