vixen: add fonts

This commit is contained in:
Sridhar Ratnakumar 2024-10-22 20:53:41 -04:00
parent 09223c51d8
commit f11e0ab674
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -10,6 +10,7 @@ in
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-p14s-amd-gen4
./configuration.nix
(self + /modules/nixos/linux/gui/gnome.nix)
(self + /modules/nixos/linux/gui/desktopish/fonts.nix)
(self + /modules/nixos/linux/gui/_1password.nix)
];

View file

@ -2,9 +2,9 @@
{
fonts = {
enableDefaultFonts = true;
enableDefaultPackages = true;
fonts = with pkgs; [
packages = with pkgs; [
# NOTE: Some fonts may break colour emojis in Chrome
# cf. https://github.com/NixOS/nixpkgs/issues/69073#issuecomment-621982371
# If this happens , keep noto-fonts-emoji and try disabling others (nerdfonts, etc.)
@ -12,7 +12,6 @@
fira-code
cascadia-code
nerdfonts
b612
];
};
}