diff options
| author | Quentin Smith <quentin@mit.edu> | 2023-07-19 17:04:42 -0400 |
|---|---|---|
| committer | Quentin Smith <quentin@mit.edu> | 2023-07-19 17:04:42 -0400 |
| commit | f1a206c96072eed14ca26ae45c1a858099b492a8 (patch) | |
| tree | ce49a3f5cd788e78c98e54c91e9b0099632b5a0c /modules/fonts/default.nix | |
| parent | bc776e4940106a2578998dd3117a76d62ec0a8cc (diff) | |
| parent | 61662a63bfe1726588c1da6b412df86d8ca94d63 (diff) | |
Merge remote-tracking branch 'origin/master' into fonts
Diffstat (limited to 'modules/fonts/default.nix')
| -rw-r--r-- | modules/fonts/default.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix index 9b33db0..b39df76 100644 --- a/modules/fonts/default.nix +++ b/modules/fonts/default.nix @@ -14,9 +14,9 @@ in options = { fonts.fontDir.enable = mkOption { default = false; - description = '' + description = lib.mdDoc '' Whether to enable font management and install configured fonts to - <filename>/Library/Fonts</filename>. + {file}`/Library/Fonts`. NOTE: removes any manually-added fonts. ''; @@ -26,7 +26,12 @@ in type = types.listOf types.path; default = [ ]; example = literalExpression "[ pkgs.dejavu_fonts ]"; - description = "List of fonts to install."; + description = lib.mdDoc '' + List of fonts to install. + + Fonts present in later entries override those with the same filenames + in previous ones. + ''; }; }; |
