mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge pull request #456 from montchr/fonts-fontdir-option-rename
fonts: rename `fonts.enableFontDir` to `fonts.fontDir.enable` in line with NixOS
This commit is contained in:
commit
2979028c51
1 changed files with 5 additions and 1 deletions
|
@ -7,8 +7,12 @@ let
|
|||
in
|
||||
|
||||
{
|
||||
imports = [
|
||||
(mkRenamedOptionModule [ "fonts" "enableFontDir" ] [ "fonts" "fontDir" "enable" ])
|
||||
];
|
||||
|
||||
options = {
|
||||
fonts.enableFontDir = mkOption {
|
||||
fonts.fontDir.enable = mkOption {
|
||||
default = false;
|
||||
description = ''
|
||||
Whether to enable font management and install configured fonts to
|
||||
|
|
Loading…
Add table
Reference in a new issue