1
0
Fork 0
puter/hosts/abacus/filesystems.nix
2025-05-11 22:49:04 +02:00

15 lines
281 B
Nix

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