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

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

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

  config = lib.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";
    };
  };
}