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/global
|
||||||
../common/users/lander
|
../common/users/lander
|
||||||
|
|
||||||
|
../common/optional/fonts.nix
|
||||||
../common/optional/yubikey-gpg.nix
|
../common/optional/yubikey-gpg.nix
|
||||||
../common/optional/virt.nix
|
../common/optional/virt.nix
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -50,20 +50,16 @@ rec {
|
||||||
fonts = {
|
fonts = {
|
||||||
default = {
|
default = {
|
||||||
name = "Inter";
|
name = "Inter";
|
||||||
package = pkgs.inter;
|
|
||||||
size = "11";
|
size = "11";
|
||||||
};
|
};
|
||||||
iconFont = {
|
iconFont = {
|
||||||
name = "Inter";
|
name = "Inter";
|
||||||
package = pkgs.inter;
|
|
||||||
};
|
};
|
||||||
monospace = {
|
monospace = {
|
||||||
name = "MesloLGSDZ Nerd Font Mono";
|
name = "ZedMono Nerd Font";
|
||||||
package = pkgs.nerdfonts.override { fonts = [ "Meslo" ]; };
|
|
||||||
};
|
};
|
||||||
emoji = {
|
emoji = {
|
||||||
name = "Joypixels";
|
name = "Joypixels";
|
||||||
package = pkgs.joypixels;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue