Change font to commit-mono

This commit is contained in:
muon 2024-11-30 11:27:29 +00:00
parent c12551ee6a
commit 66e189b476

View file

@ -28,8 +28,8 @@ in {
stylix.fonts = {
monospace = {
package = pkgs.nerd-fonts.mononoki;
name = "Mononoki Nerd Font";
package = pkgs.nerd-fonts.commit-mono;
name = "CommitMono Nerd Font";
};
emoji = {
package = pkgs.noto-fonts-emoji;
@ -39,6 +39,10 @@ in {
sansSerif = config.stylix.fonts.monospace;
};
fonts.packages = with pkgs; [ openmoji-color mononoki nerd-fonts.mononoki ];
fonts.packages = with pkgs; [
openmoji-color
commit-mono
nerd-fonts.commit-mono
];
};
}