makefu: fix tsp ip, add font in base-gui

This commit is contained in:
makefu 2015-08-09 14:53:24 +02:00
parent 2808b225b7
commit a475ce1665

View file

@ -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;
};
}