puter/hosts/abacus/fs.nix
2024-09-15 14:16:32 +02:00

8 lines
161 B
Nix

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