stockholm/makefu/2configs/extra-fonts.nix
makefu 679a03403f
m 1 x: re-enable virtualbox
want to test 3d acceleration
2017-03-17 01:21:20 +01:00

15 lines
300 B
Nix

{ pkgs, ... }:
{
fonts = {
enableFontDir = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
inconsolata # monospaced
ubuntu_font_family # Ubuntu fonts
unifont # some international languages
dejavu_fonts
terminus_font
];
};
}