mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
14 lines
360 B
Nix
14 lines
360 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
fonts = pkgs.runCommand "fonts-0.0.0" {} "mkdir -p $out";
|
|
in {
|
|
fonts.fonts = [ pkgs.dejavu_fonts ];
|
|
|
|
test = ''
|
|
echo checking installed fonts >&2
|
|
grep -o "fontrestore default -n" ${config.out}/activate
|
|
grep -o "/share/fonts/truetype/DejaVuSans.ttf' '/Library/Fonts/DejaVuSans.ttf'" ${config.out}/activate
|
|
'';
|
|
}
|
|
|