1
0
Fork 0
puter/hosts/abacus/filesystems.nix

16 lines
281 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{ config, ... }:
{
2025-03-01 22:21:00 +01:00
fileSystems = {
"/" = {
fsType = "ext4";
label = "main";
2025-05-11 22:49:04 +02:00
options = [ "noatime" ];
2025-03-01 22:21:00 +01:00
};
${config.services.navidrome.settings.MusicFolder} = {
label = "music";
fsType = "ext4";
2025-05-11 22:49:04 +02:00
options = [ "noatime" ];
2025-03-01 22:21:00 +01:00
};
};
}