diff --git a/machines/AMD-Workstation/default.nix b/machines/AMD-Workstation/default.nix index 371a15b..b830256 100644 --- a/machines/AMD-Workstation/default.nix +++ b/machines/AMD-Workstation/default.nix @@ -112,7 +112,6 @@ inputs.nixos-generators.packages.${pkgs.hostPlatform.system}.nixos-generate pkgs.prismlauncher pkgs.piper - pkgs.osu-lazer-bin pkgs.nix-alien # pkgs.nix-init pkgs.nixpkgs-review diff --git a/profiles/applications/games/hoyo.nix b/profiles/applications/games/hoyo.nix index b1522fa..30b7442 100644 --- a/profiles/applications/games/hoyo.nix +++ b/profiles/applications/games/hoyo.nix @@ -2,14 +2,10 @@ imports = [ inputs.aagl.nixosModules.default ]; nix.settings = inputs.aagl.nixConfig; - programs.anime-borb-launcher.enable = true; - programs.anime-game-launcher.enable = true; programs.honkers-railway-launcher.enable = true; networking.mihoyo-telemetry.block = lib.mkForce true; persist.state.homeDirectories = [ - ".local/share/anime-borb-launcher" - ".local/share/anime-game-launcher" ".local/share/honkers-railway-launcher" ]; } diff --git a/profiles/applications/games/wine-games.nix b/profiles/applications/games/wine-games.nix index 719bb16..2204b0b 100644 --- a/profiles/applications/games/wine-games.nix +++ b/profiles/applications/games/wine-games.nix @@ -1,10 +1,12 @@ { pkgs, lib, config, ... }: { home-manager.users.${config.mainuser}.home.packages = [ pkgs.lutris pkgs.bottles + pkgs.osu-lazer-bin ]; persist.state.homeDirectories = [ ".config/lutris" ".local/share/lutris" ".local/share/bottles" + ".local/share/osu" ]; }