Add basic asf config

This commit is contained in:
Johannes Jöns 2023-08-02 18:25:31 +02:00
parent 412a477e91
commit 226b6883cb
2 changed files with 19 additions and 0 deletions

View file

@ -50,6 +50,7 @@
./modules/printing
#./modules/ssh
./modules/steam
./modules/asf
./modules/minecraft-server
./modules/editor
./modules/users/jopejoe1

18
modules/asf/default.nix Normal file
View file

@ -0,0 +1,18 @@
{ ... }:
{
services.archisteamfarm = {
enable = true;
web-ui.enable = true;
bots.jopejoe1 = {
username = "jopejoe1";
enabled = true;
settings = {
AutoSteamSaleEvent = true;
FarmingOrders = 9;
OnlineStatus = 0;
RemoteCommunication = 0;
};
};
};
}