2024-02-08 23:21:10 +03:00
|
|
|
{ inputs, lib, ... }: {
|
2023-05-16 21:56:54 +03:00
|
|
|
imports = [ inputs.aagl.nixosModules.default ];
|
|
|
|
|
2023-08-04 02:37:47 +03:00
|
|
|
nix.settings = inputs.aagl.nixConfig;
|
|
|
|
programs.honkers-railway-launcher.enable = true;
|
|
|
|
networking.mihoyo-telemetry.block = lib.mkForce true;
|
2023-05-16 21:56:54 +03:00
|
|
|
|
2024-07-07 17:03:21 +03:00
|
|
|
networking.extraHosts = ''
|
|
|
|
0.0.0.0 globaldp-prod-os01.zenlesszonezero.com
|
|
|
|
0.0.0.0 apm-log-upload.mihoyo.com
|
|
|
|
'';
|
|
|
|
|
2023-05-16 21:56:54 +03:00
|
|
|
persist.state.homeDirectories = [
|
|
|
|
".local/share/honkers-railway-launcher"
|
|
|
|
];
|
2023-08-30 18:39:32 +03:00
|
|
|
}
|