8 lines
161 B
Nix
8 lines
161 B
Nix
{config, ...}: {
|
|
fileSystems.${config.services.navidrome.settings.MusicFolder} = {
|
|
label = "music";
|
|
fsType = "ext4";
|
|
options = ["noatime"];
|
|
};
|
|
}
|