more modules and move stuff to modules
This commit is contained in:
parent
8fd7302ace
commit
38949ee1b7
7 changed files with 80 additions and 55 deletions
18
modules/fonts/default.nix
Normal file
18
modules/fonts/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ pkgs, ... }: {
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
alegreya
|
||||
alegreya-sans
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
roboto
|
||||
ubuntu_font_family
|
||||
];
|
||||
fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "Alegreya" ];
|
||||
sansSerif = [ "Alegreya Sans" ];
|
||||
monospace = [ "Fira Code Nerd Font" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue