Browse Source

Add fonts

master
Taylor Bockman 8 years ago
parent
commit
edc05d2c0c
  1. 6
      dotfiles/Xresources
  2. 4
      nix/configuration.nix
  3. 15
      nix/display/default.nix
  4. 2
      nix/games/default.nix

6
dotfiles/Xresources

@ -126,7 +126,7 @@ URxvt.tabbed.title: no
! URxvt.keysym.Control-Down: \033[1;5B
! URxvt.keysym.Control-Left: \033[1;5D
! URxvt.keysym.Control-Right: \033[1;5C
! URxvt.keysym.C-S-0:
Xft.dpi: 96
@ -135,10 +135,10 @@ Xft.hinting: 1
Xft.hintstyle: hintslight
Xft.rgba: rgb
xterm*faceName: Inconsolata
xterm*faceSize: 7 7 7 7 7 7 7
xterm*faceSize: 10 10 10 10 10 10 10
!URxvt*font: xft:Liberation Mono-8
!URxvt*boldFont: xft:Liberation Mono:bold
URxvt*font: xft:Inconsolata:size=8:antialias=true:hinting=true
URxvt*font: xft:Inconsolata:size=10:antialias=true:hinting=true
URxvt*boldFont: xft:Inconsolata:bold
URxvt.letterSpace: -1

4
nix/configuration.nix

@ -32,9 +32,9 @@
networking.hostName = "ares"; # Define your hostname.
networking.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
i18n = {
consoleFont = "inconsolata";
consoleFont = "lat9w-16";
consoleKeyMap = "us";
defaultLocale = "en_US.UTF-8";
};

15
nix/display/default.nix

@ -17,10 +17,21 @@
xorg.xbacklight # Backlight manager
];
# services.xserver.videoDriver =
# services.xserver.videoDriver =
fonts = {
enableFontDir = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
corefonts # Microsoft free fonts
inconsolata # Great monospaced font
ubuntu_font_family # Another great font family
unifont # International language support
];
};
services = {
udisks2.enable = true;
udisks2.enable = true;
xserver = {
enableTCP = false;

2
nix/games/default.nix

@ -3,6 +3,6 @@
environment.systemPackages = with pkgs; [
nethack
steam
tibia
# tibia
];
}

Loading…
Cancel
Save