mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
28 lines
706 B
Nix
28 lines
706 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
homeDir = config.home.homeDirectory;
|
||
|
fontsEnv = pkgs.buildEnv {
|
||
|
name = "home-manager-fonts";
|
||
|
paths = config.home.packages;
|
||
|
pathsToLink = "/share/fonts";
|
||
|
};
|
||
|
fonts = "${fontsEnv}/share/fonts";
|
||
|
in {
|
||
|
# macOS won't recognize symlinked fonts
|
||
|
config.home.activation.copyFonts = hm.dag.entryAfter [ "writeBoundary" ] ''
|
||
|
copyFonts() {
|
||
|
rm -rf ${homeDir}/Library/Fonts/HomeManager || :
|
||
|
|
||
|
local f
|
||
|
find -L "${fonts}" -type f -printf '%P\0' | while IFS= read -rd "" f; do
|
||
|
$DRY_RUN_CMD install $VERBOSE_ARG -Dm644 -T \
|
||
|
"${fonts}/$f" "${homeDir}/Library/Fonts/HomeManager/$f"
|
||
|
done
|
||
|
}
|
||
|
copyFonts
|
||
|
'';
|
||
|
}
|