Fonts
This commit is contained in:
parent
5aa71c687a
commit
3a4a2a8c6f
2 changed files with 20 additions and 0 deletions
|
@ -37,6 +37,7 @@
|
|||
"services.sync.prefs.sync.browser.newtabpage.enabled" = "false";
|
||||
};
|
||||
|
||||
# https://nur.nix-community.org/repos/rycee/
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
privacy-badger
|
||||
decentraleyes
|
||||
|
|
|
@ -153,6 +153,25 @@
|
|||
options = "--delete-older-than 7d";
|
||||
};
|
||||
|
||||
|
||||
|
||||
# Fonts
|
||||
fontconfig = {
|
||||
defaultFonts = {
|
||||
emoji = [ "Noto Color Emoji" ];
|
||||
monospace = [ "JetBrainsMono Nerd Font" "Cascadia Code" "Sarasa Mono SC" ];
|
||||
sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
||||
serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
||||
};
|
||||
includeUserConf = false;
|
||||
};
|
||||
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
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
|
|
Loading…
Reference in a new issue