depot/third_party/nixpkgs/nixos/modules/programs/xastir.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

21 lines
489 B
Nix

{ 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";
};
};
}