Make factorio blueprints with nix
Find a file
2025-11-06 20:31:29 +01:00
lib
.gitignore
flake.lock
flake.nix
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; };
    }
    ];
}