5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
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";
|
|
};
|
|
};
|
|
}
|