14 lines
128 B
Nix
14 lines
128 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.firewall.allowedTCPPorts = [
|
|
6667
|
|
];
|
|
|
|
krebs.ergo = {
|
|
enable = true;
|
|
};
|
|
}
|
|
|
|
|