1
0
Fork 0

Improve fonts

This commit is contained in:
Malte Brandy 2018-05-31 21:12:32 +02:00
parent dcf8c90b29
commit 91b43804e3
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
4 changed files with 5 additions and 2 deletions

View file

@ -21,7 +21,6 @@ imports = [
../common/secret
# ./sort-mail.nix
# ./morgenreport.nix
# ./my-systems.nix
];
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
@ -111,6 +110,7 @@ home.sessionVariables = {
EDITOR="${pkgs.neovim}/bin/nvim";
TERMINAL=config.m-0.terminal;
};
systemd.user.startServices = true;
home.packages = with pkgs; [

View file

@ -33,6 +33,7 @@ config = mkIf config.m-0.graphical.enable {
followMouse = false;
forceWrapping = true;
};
fonts = [ "Monofur Nerd Font 10.5" ];
colors = {
focused = {
background = colors.blue;

View file

@ -5,7 +5,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char font[] = "Monofur Nerd Font:pixelsize=16:antialias=true:autohint=true";
static char font[] = "Monofur Nerd Font:size=10.5:antialias=true:autohint=true";
//static char font[] = "-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1";
static int borderpx = 2;
#define histsize 20000

View file

@ -7,6 +7,8 @@ let
in {
imports = [
<nixos-hardware/lenovo/thinkpad>
<nixos-hardware/common/pc/ssd>
./hardware-configuration.nix
../../system
];