summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-08-09 14:53:24 +0200
committermakefu <github@syntax-fehler.de>2015-08-09 14:53:38 +0200
commit4fc382180ffcbe2326ac559de158fefff6370ab5 (patch)
treee8fac60d27aa2d8623a3b76ffcb53f6f2320fb1c /makefu
parentd38809879df79be835de25d0d7531c8c0eb6423a (diff)
makefu: fix tsp ip, add font in base-gui
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/base-gui.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/makefu/2configs/base-gui.nix b/makefu/2configs/base-gui.nix
index c4755c21..6cfd0e50 100644
--- a/makefu/2configs/base-gui.nix
+++ b/makefu/2configs/base-gui.nix
@@ -29,14 +29,28 @@ in
desktopManager.xterm.enable = false;
};
- environment.systemPackages = [
- pkgs.xlockmore
- pkgs.rxvt_unicode-with-plugins
+## FONTS
+# TODO: somewhere else?
+
+ i18n.consoleFont = "Lat2-Terminus16";
+
+ fonts = {
+ enableCoreFonts = true;
+ enableFontDir = true;
+ enableGhostscriptFonts = false;
+ fonts = [ pkgs.terminus_font ];
+ };
+
+ environment.systemPackages = with pkgs;[
+ xlockmore
+ rxvt_unicode-with-plugins
+ vlc
+ firefox
+ chromium
];
hardware.pulseaudio = {
enable = true;
systemWide = true;
};
-
}