typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / nixos / modules / programs / xastir.nix
blob6d5fc59aac506be3743d05f68ea87cffb6937c7c
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.programs.xastir;
7 in {
8   meta.maintainers = with maintainers; [ melling ];
10   options.programs.xastir = {
11     enable = mkEnableOption (mdDoc "Xastir Graphical APRS client");
12   };
14   config = mkIf cfg.enable {
15     environment.systemPackages = with pkgs; [ xastir ];
16     security.wrappers.xastir = {
17       source = "${pkgs.xastir}/bin/xastir";
18       capabilities = "cap_net_raw+p";
19       owner = "root";
20       group = "root";
21     };
22   };