Skip to content

Instantly share code, notes, and snippets.

@Scoder12
Scoder12 / json2nix.py
Last active March 24, 2024 22:19
Converts JSON objects into nix (hackishly).
"""Converts JSON objects into nix (hackishly)."""
import sys
import json
INDENT = " " * 2
def strip_comments(t):