Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented

ignore fmt of gh issue templates

+4 -2
+2 -2
.github/ISSUE_TEMPLATE/bug_report.md
··· 1 - ______________________________________________________________________ 2 3 name: Bug report 4 about: Issues are testable/actionable tasks. Use Discussions for questions, feature-requests, problem solving. ··· 6 labels: 'bug' 7 assignees: '' 8 9 - ______________________________________________________________________ 10 11 If you have found a bug, please share a reproduction repository with us. 12
··· 1 + --- 2 3 name: Bug report 4 about: Issues are testable/actionable tasks. Use Discussions for questions, feature-requests, problem solving. ··· 6 labels: 'bug' 7 assignees: '' 8 9 + --- 10 11 If you have found a bug, please share a reproduction repository with us. 12
+2
checkmate.nix
··· 8 tests = map (file: "${./checkmate/tests}/${file}") nixes; 9 in 10 tests; 11 }
··· 8 tests = map (file: "${./checkmate/tests}/${file}") nixes; 9 in 10 tests; 11 + 12 + perSystem.treefmt.settings.global.excludes = [ ".github/*/*.md" ]; 13 }