mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-28 00:05:00 +08:00
14 lines
182 B
Nix
14 lines
182 B
Nix
{
|
|
imports = [
|
|
./basics.nix
|
|
];
|
|
|
|
services = {
|
|
fail2ban = {
|
|
enable = true;
|
|
ignoreIP = [
|
|
"100.80.93.92" # Tailscale "appreciate"
|
|
];
|
|
};
|
|
};
|
|
}
|