Skip to content

Commit

Permalink
vixen: add fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Oct 23, 2024
1 parent 09223c5 commit f11e0ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions configurations/nixos/vixen/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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)
];

Expand Down
5 changes: 2 additions & 3 deletions modules/nixos/linux/gui/desktopish/fonts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@

{
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.)
noto-fonts-emoji
fira-code
cascadia-code
nerdfonts
b612
];
};
}

0 comments on commit f11e0ab

Please sign in to comment.