mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 11:20:19 +01:00
37 lines
493 B
Nix
37 lines
493 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
home.packages = with pkgs; [
|
|
bottles
|
|
heroic
|
|
lutris
|
|
simulationcraft
|
|
warcraftlogs
|
|
wine-tkg
|
|
winetricks
|
|
weakauras-companion
|
|
wowup-cf
|
|
xivlauncher
|
|
obs-studio
|
|
pulseaudio
|
|
wow-note
|
|
umu-launcher
|
|
cage
|
|
owmods-gui
|
|
];
|
|
|
|
programs.mangohud = {
|
|
enable = true;
|
|
};
|
|
|
|
home.file = {
|
|
".config/heroic/tools/wine/wine-system" = {
|
|
source = pkgs.wine-tkg;
|
|
#recursive = true;
|
|
};
|
|
};
|
|
}
|