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

This commit is contained in:
makefu 2015-08-09 14:53:24 +02:00
parent d38809879d
commit 4fc382180f
2 changed files with 19 additions and 5 deletions

View File

@ -1,4 +1,4 @@
Subnet = 10.243.0.211
Subnet = 10.243.0.212
Subnet = 42:f9f1:0000:0000:0000:0000:0000:0002
-----BEGIN RSA PUBLIC KEY-----

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