mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
nixos/gnome3: add new default fonts
- source-code-pro is now the default monospace font - source-sans-pro seems to be used somewhere too: https://wiki.gnome.org/Engagement/BrandGuidelines
This commit is contained in:
parent
837e601dc5
commit
c99a666aac
1 changed files with 5 additions and 1 deletions
|
@ -160,7 +160,11 @@ in {
|
|||
# If gnome3 is installed, build vim for gtk3 too.
|
||||
nixpkgs.config.vim.gui = "gtk3";
|
||||
|
||||
fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell-fonts ];
|
||||
fonts.fonts = [
|
||||
pkgs.dejavu_fonts pkgs.cantarell-fonts
|
||||
pkgs.source-sans-pro
|
||||
pkgs.source-code-pro # Default monospace font in 3.32
|
||||
];
|
||||
|
||||
services.xserver.displayManager.extraSessionFilePackages = [ pkgs.gnome3.gnome-session ]
|
||||
++ map
|
||||
|
|
Loading…
Reference in a new issue