mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
39 lines
976 B
Nix
39 lines
976 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.services.openwebrx;
|
|
in
|
|
{
|
|
options.services.openwebrx = with lib; {
|
|
enable = mkEnableOption (lib.mdDoc "OpenWebRX Web interface for Software-Defined Radios on http://localhost:8073");
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.openwebrx;
|
|
defaultText = literalExpression "pkgs.openwebrx";
|
|
description = lib.mdDoc "OpenWebRX package to use for the service";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.services.openwebrx = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = with pkgs; [
|
|
csdr
|
|
digiham
|
|
codec2
|
|
js8call
|
|
m17-cxx-demod
|
|
alsaUtils
|
|
netcat
|
|
];
|
|
serviceConfig = {
|
|
ExecStart = "${cfg.package}/bin/openwebrx";
|
|
Restart = "always";
|
|
DynamicUser = true;
|
|
# openwebrx uses /var/lib/openwebrx by default
|
|
StateDirectory = [ "openwebrx" ];
|
|
};
|
|
};
|
|
};
|
|
}
|