diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index e61be9a..fbbfbac 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -57,8 +57,18 @@ [ (builtins.readFile ../../secrets/ssh/ed25519_nixworkstation.pub) ]; }; }; - services.btrfs.autoScrub = { - enable = true; - fileSystems = [ "/" ]; + services = { + minidlna = { + enable = true; + openFirewall = true; + settings = { + inotify = "yes"; + media_dir = [ "/mnt/pool" ]; + }; + }; + btrfs.autoScrub = { + enable = true; + fileSystems = [ "/" ]; + }; }; }