18 lines
396 B
Nix
18 lines
396 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let cfg = config.sydnix.gtav-battleye-hack;
|
|
in {
|
|
options.sydnix.gtav-battleye-hack = {
|
|
enable = lib.mkEnableOption
|
|
"Grand Theft Auto V Online BattlEye workaround";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
networking.hosts."0.0.0.0" = [
|
|
"paradise-s1.battleye.com"
|
|
"test-s1.battleye.com"
|
|
"paradiseenhanced-s1.battleye.com"
|
|
];
|
|
};
|
|
}
|