From e4a334234b91f230571b5111a2b698230b27c660 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 11 Jun 2024 08:00:45 +0200 Subject: refactor(common): Use symlinks to state, which files should be replaced Every symlink in the `./templates` directory is now replaced with the file it points to, making it obvious that this file should not be edited. --- common/default.nix | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 common/default.nix (limited to 'common/default.nix') diff --git a/common/default.nix b/common/default.nix deleted file mode 100644 index 484ac38..0000000 --- a/common/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -# 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") - // (mkProgramming "docs/%INIT_APPLICATION_NAME.1.md") -- cgit 1.4.1