1
0
mirror of https://github.com/kmein/niveum synced 2026-03-20 20:01:08 +01:00

Use default fonts

This commit is contained in:
Kierán Meinhardt
2019-01-04 16:36:52 +01:00
parent af03c7c915
commit 4cc6335050
3 changed files with 7 additions and 3 deletions

View File

@@ -64,7 +64,7 @@
home-manager.users.kfm = { home-manager.users.kfm = {
gtk = { gtk = {
enable = true; enable = true;
font = with import ../theme.nix; { package = pkgs.cantarell-fonts; name = uiFont.name; }; # font = with import ../theme.nix; { package = pkgs.noto-fonts; name = uiFont.name; };
iconTheme = config.constants.theme.icon; iconTheme = config.constants.theme.icon;
theme = config.constants.theme.gtk; theme = config.constants.theme.gtk;
}; };

View File

@@ -9,20 +9,24 @@ in with pkgs;
fonts.enableDefaultFonts = true; fonts.enableDefaultFonts = true;
fonts.fonts = [ fonts.fonts = [
cantarell-fonts
corefonts corefonts
eb-garamond eb-garamond
fira fira
libertine libertine
lmodern lmodern
noto-fonts
powerline-fonts powerline-fonts
roboto roboto
xlibs.fontschumachermisc xlibs.fontschumachermisc
ubuntu_font_family
]; ];
environment.systemPackages = [ environment.systemPackages = [
] ++ [ # office ] ++ [ # office
abiword abiword
gnumeric gnumeric
typora
] ++ [ # theme ] ++ [ # theme
config.constants.theme.gtk.package config.constants.theme.gtk.package
config.constants.theme.icon.package config.constants.theme.icon.package

View File

@@ -59,8 +59,8 @@ let
pointerColorForeground = solarizedDark.green.light; pointerColorForeground = solarizedDark.green.light;
}; };
in rec { in rec {
uiFont = { name = "Cantarell"; size = 9; }; uiFont = { name = "Sans"; size = 9; };
terminalFont = { name = "Source Code Pro for Powerline"; size = 9; }; terminalFont = { name = "Monospace"; size = 9; };
white = "#ffffff"; white = "#ffffff";
black = "#000000"; black = "#000000";