test
This commit is contained in:
parent
f95d274248
commit
67e11a1410
1 changed files with 16 additions and 13 deletions
|
@ -154,21 +154,24 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Fonts
|
# Fonts
|
||||||
fontconfig = {
|
fonts = {
|
||||||
defaultFonts = {
|
fontconfig = {
|
||||||
emoji = [ "Noto Color Emoji" ];
|
defaultFonts = {
|
||||||
monospace = [ "JetBrainsMono Nerd Font" "Cascadia Code" "Sarasa Mono SC" ];
|
emoji = [ "Noto Color Emoji" ];
|
||||||
sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
monospace = [ "JetBrainsMono Nerd Font" "Cascadia Code" "Sarasa Mono SC" ];
|
||||||
serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
||||||
|
serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
||||||
|
};
|
||||||
|
includeUserConf = false;
|
||||||
};
|
};
|
||||||
includeUserConf = false;
|
|
||||||
|
fonts = with pkgs; [
|
||||||
|
cascadia-code
|
||||||
|
(nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; })
|
||||||
|
noto-fonts-emoji
|
||||||
|
sarasa-gothic
|
||||||
|
];
|
||||||
};
|
};
|
||||||
fonts.fonts = with pkgs; [
|
|
||||||
cascadia-code
|
|
||||||
(nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; })
|
|
||||||
noto-fonts-emoji
|
|
||||||
sarasa-gothic
|
|
||||||
];
|
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
|
|
Loading…
Reference in a new issue