server enabled minidlna

This commit is contained in:
Danilo Reyes 2024-07-07 12:47:52 -06:00
parent e2914cd0f0
commit e10055393c

View File

@ -57,8 +57,18 @@
[ (builtins.readFile ../../secrets/ssh/ed25519_nixworkstation.pub) ];
};
};
services.btrfs.autoScrub = {
services = {
minidlna = {
enable = true;
openFirewall = true;
settings = {
inotify = "yes";
media_dir = [ "/mnt/pool" ];
};
};
btrfs.autoScrub = {
enable = true;
fileSystems = [ "/" ];
};
};
}