21 lines
757 B
Nix
21 lines
757 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/info4459-Bagnon.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/info4459-Bagnon.html
|
|
https://github.com/max-ri/Guidelime.git
|
|
'';
|
|
};
|
|
}
|