Files
nixos/hosts/steamdeck.cloonar.com/modules/wow.nix
2023-09-30 17:48:51 +02:00

22 lines
828 B
Nix

{ ... }:
{
programs.wow-addon-manager = {
enable = true;
user = "dominik";
addonList = ''
https://www.wowinterface.com/downloads/info23536-ConsolePort.html
https://www.wowinterface.com/downloads/info24714-Immersion.html
https://www.wowinterface.com/downloads/info25570-DynamicCam.html
https://www.wowinterface.com/downloads/info26470-AdiBags-Dragonflight.html
'';
classicAddonList = ''
https://www.wowinterface.com/downloads/info23536-ConsolePort.html
https://www.wowinterface.com/downloads/info24714-Immersion.html
https://www.wowinterface.com/downloads/info25570-DynamicCam.html
https://www.wowinterface.com/downloads/info26598-AdiBags-Classic.html
https://github.com/max-ri/Guidelime.git
https://sage-guide.netlify.app/Sage.zip
'';
};
}