mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
nixos/minidlna: add package option
This commit is contained in:
parent
2b40f1b3c8
commit
5970720f1c
@ -21,6 +21,8 @@ in
|
||||
'';
|
||||
};
|
||||
|
||||
options.services.minidlna.package = lib.mkPackageOption pkgs "minidlna" { };
|
||||
|
||||
options.services.minidlna.openFirewall = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
@ -141,7 +143,7 @@ in
|
||||
CacheDirectory = "minidlna";
|
||||
RuntimeDirectory = "minidlna";
|
||||
PIDFile = "/run/minidlna/pid";
|
||||
ExecStart = "${pkgs.minidlna}/sbin/minidlnad -S -P /run/minidlna/pid -f ${settingsFile}";
|
||||
ExecStart = "${lib.getExe cfg.package} -S -P /run/minidlna/pid -f ${settingsFile}";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user