1
Fork 0
nixos-system-config/modules/desktop/apps/games.nix
caem 377c4be269
games: Remove xivlauncher
I haven't touched the game in months. Don't really need this anymore.
All it does is add a minute to rebuild time because C# is a piece of
shit that should've never cursed the earth.
2024-12-01 13:16:43 +01:00

35 lines
784 B
Nix

{ pkgs, inputs, ... }:
{
environment.persistence."/nix/persist".users.hu.directories = [
".steam"
".local/share/Steam"
".local/share/honkers-railway-launcher"
".local/share/anime-game-launcher"
".local/share/PrismLauncher"
".xlcore"
".local/share/Euro Truck Simulator 2"
".local/share/osu"
".local/share/Colossal Order"
];
programs.steam = {
enable = true;
remotePlay.openFirewall = false;
dedicatedServer.openFirewall = true;
gamescopeSession.enable = true;
};
environment.systemPackages = with pkgs; [
prismlauncher
protonup-qt
osu-lazer-bin
protontricks
];
imports = [ inputs.aagl.nixosModules.default ];
nix.settings = inputs.aagl.nixConfig;
programs.anime-game-launcher.enable = true;
}