puter/hosts/headless/abacus/fs.nix

8 lines
161 B
Nix
Raw Normal View History

2024-09-15 12:16:32 +00:00
{config, ...}: {
fileSystems.${config.services.navidrome.settings.MusicFolder} = {
label = "music";
fsType = "ext4";
options = ["noatime"];
};
}