makefu: fix tsp ip, add font in base-gui
This commit is contained in:
parent
2808b225b7
commit
a475ce1665
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue