12 lines
310 B
Nix
Raw Normal View History

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
persist.state.homeDirectories = [
".local/share/honkers-railway-launcher"
];
2023-08-30 18:39:32 +03:00
}