* flake.lock update, with code changes needed. * miniserve.rs static directory listing. * change from typst-ls to tinymist for typst lsp * deletion of hugo template. * change from self-built duckdns module to nixpkgs one.
25 lines
442 B
Nix
25 lines
442 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
virtualisation.oci-containers = {
|
|
backend = "docker";
|
|
containers.factorio = {
|
|
image = "factoriotools/factorio:stable";
|
|
volumes = ["/storage/factorio:/factorio"];
|
|
hostname = "factorio";
|
|
ports = [
|
|
"34197:34197/udp"
|
|
"27015:27015/tcp"
|
|
];
|
|
environment = {UPDATE_MODS_ON_START = "true";};
|
|
};
|
|
};
|
|
imports = [
|
|
./docker.nix
|
|
];
|
|
}
|