From f7f0b25a72ab8b6326c74edf01a86bbd8749bd91 Mon Sep 17 00:00:00 2001 From: Ethorbit <11908638+Ethorbit@users.noreply.github.com> Date: Fri, 23 Jan 2026 20:18:20 -0800 Subject: [PATCH] Add comment style for nix files --- add_license_header.py | 1 + 1 file changed, 1 insertion(+) diff --git a/add_license_header.py b/add_license_header.py index 731d52d..00709b6 100644 --- a/add_license_header.py +++ b/add_license_header.py @@ -43,6 +43,7 @@ class BlockComment(NamedTuple): 'lua': BlockComment('--[[', '', '--]]'), 'makefile': BlockComment('#', '#', '#'), 'markdown': BlockComment(''), + 'nix': BlockComment('#', '#', '#'), 'php': BlockComment('/*', ' *', ' */'), 'python': BlockComment('#', '#', '#'), 'ruby': BlockComment('#', '#', '#'),