2021-02-21 14:34:56 +09:00
|
|
|
{ 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";
|
2024-02-19 00:09:58 +02:00
|
|
|
installDir = "${homeDir}/Library/Fonts/HomeManager";
|
2021-02-21 14:34:56 +09:00
|
|
|
in {
|
|
|
|
# macOS won't recognize symlinked fonts
|
2021-12-02 21:30:34 -08:00
|
|
|
config = mkIf pkgs.stdenv.hostPlatform.isDarwin {
|
2024-02-19 00:09:58 +02:00
|
|
|
home.file."Library/Fonts/.home-manager-fonts-version" = {
|
|
|
|
text = "${fontsEnv}";
|
|
|
|
onChange = ''
|
|
|
|
run mkdir -p ${escapeShellArg installDir}
|
|
|
|
run ${pkgs.rsync}/bin/rsync $VERBOSE_ARG -acL --chmod=u+w --delete \
|
|
|
|
${escapeShellArgs [ "${fonts}/" installDir ]}
|
|
|
|
'';
|
|
|
|
};
|
2021-07-07 23:24:27 +02:00
|
|
|
};
|
2021-02-21 14:34:56 +09:00
|
|
|
}
|