Merge pull request #214982 from Janik-Haag/master

qdmr: fixup

authored by Nick Cao and committed by GitHub 3aee0744 8f3021c7

+5 -5
+2 -2
nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
··· 116 116 <listitem> 117 117 <para> 118 118 <link xlink:href="https://dm3mat.darc.de/qdmr/">QDMR</link>, a 119 - gui application and command line tool for programming cheap 120 - DMR radios 119 + GUI application and command line tool for programming DMR 120 + radios 121 121 <link linkend="opt-programs.qdmr.enable">programs.qdmr</link> 122 122 </para> 123 123 </listitem>
+1 -1
nixos/doc/manual/release-notes/rl-2305.section.md
··· 38 38 39 39 - [mmsd](https://gitlab.com/kop316/mmsd), a lower level daemon that transmits and recieves MMSes. Available as [services.mmsd](#opt-services.mmsd.enable). 40 40 41 - - [QDMR](https://dm3mat.darc.de/qdmr/), a gui application and command line tool for programming cheap DMR radios [programs.qdmr](#opt-programs.qdmr.enable) 41 + - [QDMR](https://dm3mat.darc.de/qdmr/), a GUI application and command line tool for programming DMR radios [programs.qdmr](#opt-programs.qdmr.enable) 42 42 43 43 - [v2rayA](https://v2raya.org), a Linux web GUI client of Project V which supports V2Ray, Xray, SS, SSR, Trojan and Pingtunnel. Available as [services.v2raya](options.html#opt-services.v2raya.enable). 44 44
+1 -1
nixos/modules/programs/qdmr.nix
··· 20 20 config = lib.mkIf cfg.enable { 21 21 environment.systemPackages = [ cfg.package ]; 22 22 services.udev.packages = [ cfg.package ]; 23 - users.groups.wireshark = {}; 23 + users.groups.dialout = {}; 24 24 }; 25 25 }
+1 -1
pkgs/applications/radio/qdmr/default.nix
··· 61 61 ''; 62 62 63 63 meta = { 64 - description = "A codeplug programming tool for DMR radios"; 64 + description = "GUI application and command line tool for programming DMR radios"; 65 65 homepage = "https://dm3mat.darc.de/qdmr/"; 66 66 license = lib.licenses.gpl3Plus; 67 67 maintainers = with lib.maintainers; [ janik _0x4A6F ];