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