Initial commit
This commit is contained in:
28
modules/desktop/fonts.nix
Normal file
28
modules/desktop/fonts.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{ pkgs, ... }: {
|
||||
fonts = {
|
||||
packages = with pkgs; ([
|
||||
# fira-code
|
||||
# fira-code-symbols
|
||||
noto-fonts-emoji
|
||||
]
|
||||
++ (with nerd-fonts; [
|
||||
fira-code
|
||||
fira-sans
|
||||
fira-mono
|
||||
noto
|
||||
font-awesome
|
||||
cozette
|
||||
source-han-sans
|
||||
ubuntu
|
||||
]));
|
||||
|
||||
fontconfig = {
|
||||
defaultFonts = {
|
||||
monospace = ["FiraCode Nerd Font Mono" "Noto Color Emoji"];
|
||||
sansSerif = ["FiraCode Nerd Font" "Noto Color Emoji"];
|
||||
serif = ["FiraCode Nerd Font" "Noto Color Emoji"];
|
||||
emoji = ["Noto Color Emoji"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user