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

37 lines
800 B
Nix
Raw Normal View History

{ pkgs, inputs, ... }:
2024-04-05 14:36:20 +02:00
{
environment.persistence."/nix/persist".users.hu.directories = [
".steam"
".local/share/Steam"
".local/share/honkers-railway-launcher"
2024-11-11 17:40:33 +01:00
".local/share/anime-game-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-09-28 21:06:03 +02:00
gamescopeSession.enable = 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
];
imports = [ inputs.aagl.nixosModules.default ];
nix.settings = inputs.aagl.nixConfig;
programs.anime-game-launcher.enable = true;
2024-04-05 14:36:20 +02:00
}