mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 18:40:32 +01:00
13 lines
284 B
Nix
13 lines
284 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";
|
|
};
|
|
}
|