about summary refs log tree commit diff
path: root/nixos/modules/services/networking/minidlna.nix
Commit message (Collapse)AuthorAge
* minidlna: use journalctl for logging, systemd for runtimedirAlexander Ried2016-04-08
|
* minidlna: use hostname in DLNA friendly nameAlexander Ried2016-04-08
|
* minidlna: 1.0.25 -> 1.1.4Ambroz Bizjak2015-07-04
| | | | | | | | | | Changes: - gettext is needed to build - Switched to using non-legacy ffmpeg. - Removed ffmpeg stuff from include path since it causes build errors related to a time.h header. - Removed unneeded patch. - Adjusted NixOS service due to the binary being renamed.
* Some more type cleanupEelco Dolstra2015-06-15
|
* Add local-fs.target to minidlna.Moritz Ulrich2014-11-12
| | | | | Minidlna fails to start if it wants to access a filesystem which isn't mounted (yet).
* Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra2014-04-14
| | | | | | | | Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
* nixos: don't white-list port 8200 in the firewall when minidlna is enabledPeter Simons2013-12-23
| | | | | | | | | | | | | If you want minidla to accept connections from the rest of the world, please add networking.firewall.allowedTCPPorts = [ 8200 ]; networking.firewall.allowedUDPPorts = [ 1900 ]; to /etc/nixos/configuration.nix. See <http://lists.science.uu.nl/pipermail/nix-dev/2013-November/011997.html> for the discussion that lead to this.
* Strictly check the arguments to mkOptionEelco Dolstra2013-10-30
| | | | And fix various instances of bad arguments.
* Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra2013-10-10