From 420ce9b1e50a54bc3c7a59a4f91f0c4d72ffe5ca Mon Sep 17 00:00:00 2001 From: h7x4 Date: Wed, 8 Jul 2026 03:16:33 +0900 Subject: [PATCH] defiant/rtl-tcp: get rid of bash bash is depreciated. --- hosts/defiant/services/rtl-tcp.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/defiant/services/rtl-tcp.nix b/hosts/defiant/services/rtl-tcp.nix index 88bef7f..c8dd6c3 100644 --- a/hosts/defiant/services/rtl-tcp.nix +++ b/hosts/defiant/services/rtl-tcp.nix @@ -5,9 +5,9 @@ let in { hardware.rtl-sdr.enable = true; systemd.services.rtl-tcp = { - script = "${pkgs.rtl-sdr}/bin/rtl_tcp -a 0.0.0.0 -p ${toString port} -s 2000000 -T"; serviceConfig = { Group = "plugdev"; + ExecStart = "${pkgs.rtl-sdr}/bin/rtl_tcp -a 0.0.0.0 -p ${toString port} -s 2000000 -T"; }; }; networking.firewall.allowedTCPPorts = [ port ];