feat: switch to ZedMono
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
parent
0344d3ca8a
commit
fe8697277d
3 changed files with 15 additions and 5 deletions
13
hosts/common/optional/fonts.nix
Normal file
13
hosts/common/optional/fonts.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
fonts.fontDir.enable = true;
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
inter
|
||||
(nerdfonts.override { fonts = [ "ZedMono" ]; })
|
||||
];
|
||||
fontconfig.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
@ -7,6 +7,7 @@
|
|||
../common/global
|
||||
../common/users/lander
|
||||
|
||||
../common/optional/fonts.nix
|
||||
../common/optional/yubikey-gpg.nix
|
||||
../common/optional/virt.nix
|
||||
];
|
||||
|
|
|
|||
|
|
@ -50,20 +50,16 @@ rec {
|
|||
fonts = {
|
||||
default = {
|
||||
name = "Inter";
|
||||
package = pkgs.inter;
|
||||
size = "11";
|
||||
};
|
||||
iconFont = {
|
||||
name = "Inter";
|
||||
package = pkgs.inter;
|
||||
};
|
||||
monospace = {
|
||||
name = "MesloLGSDZ Nerd Font Mono";
|
||||
package = pkgs.nerdfonts.override { fonts = [ "Meslo" ]; };
|
||||
name = "ZedMono Nerd Font";
|
||||
};
|
||||
emoji = {
|
||||
name = "Joypixels";
|
||||
package = pkgs.joypixels;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue