diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2023-06-20 21:38:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 21:38:47 +0200 |
| commit | 681c152eea0d4f9f75c13813cd7c8474c769c260 (patch) | |
| tree | d79fc6e8d294cbcdd8b957ad410d80f9f589d03b /modules | |
| parent | 1b57241a7b36eee35785474ebf3234bac33524a9 (diff) | |
| parent | d20ba9bf9c72835cc9b9ddf57adf527e7e2f504f (diff) | |
Merge pull request #679 from dbaynard/patch-1
Document font overriding behaviour
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/fonts/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix index 0f4c269..2739b74 100644 --- a/modules/fonts/default.nix +++ b/modules/fonts/default.nix @@ -26,7 +26,12 @@ in type = types.listOf types.path; default = [ ]; example = literalExpression "[ pkgs.dejavu_fonts ]"; - description = "List of fonts to install."; + description = '' + List of fonts to install. + + Fonts present in later entries override those with the same filenames + in previous ones. + ''; }; }; |
