10 lines
227 B
Nix
10 lines
227 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
environment.systemPackages = [
|
||
|
pkgs.podgrab
|
||
|
];
|
||
|
services.podgrab.enable = true;
|
||
|
services.podgrab.port = 4242;
|
||
|
networking.firewall.allowedTCPPorts = [ config.services.podgrab.port ];
|
||
|
}
|