1
Fork 0
nixos-system-config/modules/desktop/apps/games.nix

36 lines
698 B
Nix
Raw Permalink Normal View History

2024-05-30 19:34:57 +02:00
{ pkgs, ... }:
2024-04-05 14:36:20 +02:00
{
environment.persistence."/nix/persist".users.hu.directories = [
".steam"
".local/share/Steam"
".local/share/honkers-railway-launcher"
".local/share/PrismLauncher"
".xlcore"
".local/share/Euro Truck Simulator 2"
".local/share/osu"
".local/share/Colossal Order"
];
2024-04-05 14:36:20 +02:00
programs.steam = {
enable = true;
remotePlay.openFirewall = false;
dedicatedServer.openFirewall = true;
2024-04-05 14:36:20 +02:00
};
2024-05-30 19:34:57 +02:00
environment.systemPackages = with pkgs; [
prismlauncher
protonup-qt
2024-06-27 20:59:55 +02:00
xivlauncher
2024-07-07 22:51:38 +02:00
osu-lazer-bin
2024-08-01 18:37:52 +02:00
protontricks
2024-05-30 19:34:57 +02:00
];
# Minecraft server
networking.firewall = {
allowedTCPPorts = [ 25565 ];
allowedUDPPorts = [ 25565 ];
};
2024-04-05 14:36:20 +02:00
}