mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-23 04:30:32 +01:00
13 lines
280 B
Nix
13 lines
280 B
Nix
|
{pkgs, config, lib, ...}: {
|
||
|
services.factorio = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
extraSettingsFile = /etc/factorio_settings.json;
|
||
|
admins = [ "frottingqueen" ];
|
||
|
};
|
||
|
|
||
|
sops.secrets.factorio_server_settings = {
|
||
|
path = /etc/factorio_settings.json;
|
||
|
};
|
||
|
}
|