about summary refs log tree commit diff
path: root/nixos/modules/programs/xastir.nix
blob: d9c687289ec2c7411b8de1f4ed9eb780355c9129 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.programs.xastir;
in {
  meta.maintainers = with maintainers; [ melling ];

  options.programs.xastir = {
    enable = mkEnableOption "Xastir Graphical APRS client";
  };

  config = mkIf cfg.enable {
    environment.systemPackages = with pkgs; [ xastir ];
    security.wrappers.xastir = {
      source = "${pkgs.xastir}/bin/xastir";
      capabilities = "cap_net_raw+p";
      owner = "root";
      group = "root";
    };
  };
}