2021-02-21 14:34:56 +09:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
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
|
2025-03-07 14:16:46 -06:00
|
|
|
config = lib.mkIf pkgs.stdenv.hostPlatform.isDarwin {
|
2024-02-19 00:09:58 +02:00
|
|
|
home.file."Library/Fonts/.home-manager-fonts-version" = {
|
|
|
|
text = "${fontsEnv}";
|
|
|
|
onChange = ''
|
2025-03-07 14:16:46 -06:00
|
|
|
run mkdir -p ${lib.escapeShellArg installDir}
|
2024-02-19 00:09:58 +02:00
|
|
|
run ${pkgs.rsync}/bin/rsync $VERBOSE_ARG -acL --chmod=u+w --delete \
|
2025-03-07 14:16:46 -06:00
|
|
|
${lib.escapeShellArgs [ "${fonts}/" installDir ]}
|
2024-02-19 00:09:58 +02:00
|
|
|
'';
|
|
|
|
};
|
2021-07-07 23:24:27 +02:00
|
|
|
};
|
2021-02-21 14:34:56 +09:00
|
|
|
}
|