puter/hosts/headless/abacus/fs.nix
2025-01-09 00:15:30 +01:00

8 lines
161 B
Nix

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