nixpkgs/nixos/modules/programs/fcast-receiver.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
669 B
Nix
Raw Normal View History

2024-01-24 14:12:23 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.fcast-receiver;
in
{
meta = {
maintainers = pkgs.fcast-receiver.meta.maintainers;
};
options.programs.fcast-receiver = {
enable = mkEnableOption "FCast Receiver";
2024-01-24 14:12:23 +00:00
openFirewall = mkOption {
type = types.bool;
default = false;
description = ''
2024-01-24 14:12:23 +00:00
Open ports needed for the functionality of the program.
'';
};
package = mkPackageOption pkgs "fcast-receiver" { };
};
config = mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ 46899 ];
};
};
}