diff options
author | makefu <github@syntax-fehler.de> | 2017-03-17 01:21:20 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-03-17 01:21:20 +0100 |
commit | 679a03403f0b5152c091f23c4dc1b94625f5771b (patch) | |
tree | 0aa9f39555a6ab0590122f5509363c5e6fd2f5a9 /makefu/2configs | |
parent | 4b29caff2681d21ce4be687321fa4ab2f7713cd4 (diff) |
m 1 x: re-enable virtualbox
want to test 3d acceleration
Diffstat (limited to 'makefu/2configs')
-rw-r--r-- | makefu/2configs/extra-fonts.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/makefu/2configs/extra-fonts.nix b/makefu/2configs/extra-fonts.nix new file mode 100644 index 000000000..7b3a5f197 --- /dev/null +++ b/makefu/2configs/extra-fonts.nix @@ -0,0 +1,14 @@ + { pkgs, ... }: + { + fonts = { + enableFontDir = true; + enableGhostscriptFonts = true; + fonts = with pkgs; [ + inconsolata # monospaced + ubuntu_font_family # Ubuntu fonts + unifont # some international languages + dejavu_fonts + terminus_font + ]; + }; + } |