18 lines
352 B
Nix
18 lines
352 B
Nix
{ pkgs, ... }: {
|
|
fonts.fontDir.enable = true;
|
|
# TODO: go back to `with pkgs`?
|
|
fonts.fonts = builtins.attrValues {
|
|
inherit (pkgs)
|
|
# TODO: patch recursive with nerd-font
|
|
borg-sans-mono recursive
|
|
# code^
|
|
|
|
ia-writer-family ibm-plex
|
|
# hybrid^
|
|
|
|
inter source-sans-pro source-serif-pro
|
|
# display^
|
|
;
|
|
};
|
|
}
|