From c2d78705877b0261f32abcb6690b2da46d17f816 Mon Sep 17 00:00:00 2001 From: Piotr Limanowski Date: Thu, 4 Oct 2018 20:39:03 +0200 Subject: [PATCH] adds info on automatic removal of manually-added fonts --- README.md | 1 + modules/fonts/default.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c97b061f..63fc5545 100644 --- a/README.md +++ b/README.md @@ -131,6 +131,7 @@ Whether to activate system at boot time. ## Modules - [`environment`](https://github.com/LnL7/nix-darwin/blob/master/modules/environment) +- [`fonts`](https://github.com/LnL7/nix-darwin/blob/master/modules/fonts) - [`launchd.daemons`](https://github.com/LnL7/nix-darwin/blob/master/modules/launchd/launchd.nix) - [`launchd.envVariables`](https://github.com/LnL7/nix-darwin/blob/master/modules/launchd) - [`launchd.user.agents`](https://github.com/LnL7/nix-darwin/blob/master/modules/launchd/launchd.nix) diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix index 75738fe8..479c5101 100644 --- a/modules/fonts/default.nix +++ b/modules/fonts/default.nix @@ -25,7 +25,7 @@ in { type = types.listOf types.path; default = []; example = literalExample "[ pkgs.dejavu_fonts ]"; - description = "List of primary font paths."; + description = "List of primary font paths. Important: Manually added fonts will be removed upon rebuild."; }; }; };