1
0
Fork 0
dotfiles/home/config/fonts.nix

16 lines
192 B
Nix
Raw Normal View History

2023-06-26 18:41:47 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
jetbrains-mono
noto-fonts
unifont
(nerdfonts.override {
fonts = [
"NerdFontsSymbolsOnly"
];
})
];
}