fontconfig: make fonts accessible when in NixOS module

This commit is contained in:
Robert Helgesson 2017-12-21 12:19:07 +01:00
parent ef168979bf
commit 799a90ecfa
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 6 additions and 0 deletions

View File

@ -12,6 +12,12 @@ let
config = {
submoduleSupport.enable = true;
submoduleSupport.externalPackageInstall = cfg.useUserPackages;
# The per-user directory inside /etc/profiles is not known by
# fontconfig by default.
fonts.fontconfig.enableProfileFonts =
cfg.useUserPackages && config.fonts.fontconfig.enable;
home.username = config.users.users.${name}.name;
home.homeDirectory = config.users.users.${name}.home;
};