mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
21 lines
489 B
Nix
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";
|
|
};
|
|
};
|
|
}
|