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