mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-10 11:11:14 +01:00
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 ];
|
|
}
|