Nixfiles/gaming/hm.nix

43 lines
612 B
Nix
Raw Normal View History

{
pkgs,
config,
lib,
flake,
...
}:
let
2026-03-22 17:18:49 +01:00
inherit (flake.inputs.nix-gaming.packages.${pkgs.stdenv.hostPlatform.system}) wine-tkg;
in
{
home.packages = with pkgs; [
bottles
2023-11-14 20:11:55 +01:00
heroic
lutris
simulationcraft
warcraftlogs
wine-tkg
winetricks
2024-08-12 22:11:10 +02:00
weakauras-companion
2024-12-30 19:40:37 +01:00
wowup-cf
xivlauncher
2024-03-29 22:45:57 +01:00
obs-studio
pulseaudio
wow-note
2025-01-16 20:47:50 +01:00
umu-launcher
cage
2025-05-01 19:05:51 +02:00
owmods-gui
2026-03-22 17:15:58 +01:00
prismlauncher
];
2025-04-04 15:26:08 +02:00
programs.mangohud = {
enable = true;
};
home.file = {
".config/heroic/tools/wine/wine-system" = {
source = wine-tkg;
#recursive = true;
};
};
}