11 lines
264 B
Nix
11 lines
264 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
noto-fonts
|
|
julia-mono
|
|
noto-fonts-emoji
|
|
material-design-icons
|
|
cozette
|
|
(google-fonts.override {fonts = ["Overpass" "Nunito"];})
|
|
(nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];})
|
|
];
|
|
}
|