nix-conf/modules/asf/default.nix
2023-08-21 15:41:28 +02:00

24 lines
493 B
Nix

{ ... }:
{
services.archisteamfarm = {
enable = true;
web-ui.enable = true;
settings = {
LicenseID = import /var/lib/asf/key.nix;
SteamProtocols = 7;
AutoSteamSaleEvent = true;
};
bots.jopejoe1 = {
username = "jopejoe1";
enabled = true;
passwordFile = "/var/lib/asf/pw";
settings = {
AutoSteamSaleEvent = true;
FarmingOrders = 9;
OnlineStatus = 0;
RemoteCommunication = 0;
};
};
};
}