2021-02-21 06:34:56 +01: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-18 23:09:58 +01:00
|
|
|
installDir = "${homeDir}/Library/Fonts/HomeManager";
|
2021-02-21 06:34:56 +01:00
|
|
|
in {
|
|
|
|
# macOS won't recognize symlinked fonts
|
2021-12-03 06:30:34 +01:00
|
|
|
config = mkIf pkgs.stdenv.hostPlatform.isDarwin {
|
2024-02-18 23:09:58 +01: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 06:34:56 +01:00
|
|
|
}
|