7 lines
112 B
Nix
7 lines
112 B
Nix
{ pkgs, ... }: {
|
|
fonts = {
|
|
enableFontDir = true;
|
|
fonts = with pkgs; [ comic-sans comic-code ];
|
|
};
|
|
}
|