Make factorio blueprints with nix
Find a file
2025-11-06 20:31:29 +01:00
lib docs: add reason for prepending 0 2025-11-06 20:28:57 +01:00
.gitignore feat: initial sketch of json gen 2025-11-06 20:28:56 +01:00
flake.lock feat: initial sketch of json gen 2025-11-06 20:28:56 +01:00
flake.nix feat!: auto-generate entity_number 2025-11-06 20:28:57 +01:00
readme.md docs: smol readme 2025-11-06 20:31:29 +01:00

FactoriNix

Generate factorio blueprints from the beauty of Nix.

Example Usage

self.mkBlueprint {
    entities = [
    {
        name = "steel-chest";
        position = { x = -10.5; y = -15.5; };
    }
    {
        name = "steel-chest";
        position = { x = -10.5; y = -14.5; };
    }
    {
        name = "steel-chest";
        position = { x = -11.5; y = -13.5; };
    }
    {
        name = "steel-chest";
        position = { x = -9.5; y = -13.5; };
    }
    ];
}