diff options
Diffstat (limited to 'common/default.nix')
-rw-r--r-- | common/default.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/common/default.nix b/common/default.nix new file mode 100644 index 0000000..473d4f8 --- /dev/null +++ b/common/default.nix @@ -0,0 +1,39 @@ +# This file specifies which files in the `./common` directory should be copied to which +# template in `./templates` +let + programmingLanguages = [ + "awk" + "c" + "rust" + "shell" + ]; + allLanguages = + programmingLanguages + ++ [ + "latex" + ]; + mkName = name: "./${name}"; + + mkBase = name: langs: { + "${mkName name}" = langs; + }; + + mkLang = name: lang: let + realLang = + if builtins.elem lang allLanguages + then lang + else builtins.throw "${lang} is not a recognized language!"; + in + mkBase name [realLang]; + mkProgramming = name: + mkBase name programmingLanguages; + mkAll = name: + mkBase name allLanguages; + +in + {} + // (mkAll ".licensure.yml") + // (mkAll "init") + // (mkAll "scripts/renew_copyright_header.sh") + // (mkAll "shell_line_editor.sh") + // (mkAll "treefmt.nix") |