added formatter and reformated

This commit is contained in:
ISnortPennies 2023-01-19 18:51:32 -05:00
parent 733eda4798
commit e1987d6461
24 changed files with 286 additions and 284 deletions

View file

@ -1,13 +1,13 @@
{ pkgs, ... }:
{
fonts = {
fonts = with pkgs; [overpass nerdfonts-overpass material-design-icons];
fonts = with pkgs; [ overpass nerdfonts-overpass material-design-icons ];
fontconfig = {
enable = true;
defaultFonts = {
serif = ["Overpass" "Overpass Nerd Font" "Material Design Icons"];
sansSerif = ["Overpass" "Overpass Nerd Font" "Material Design Icons"];
monospace = ["Overpass Mono" "OverpassMono Nerd Font" "Material Design Icons" ];
serif = [ "Overpass" "Overpass Nerd Font" "Material Design Icons" ];
sansSerif = [ "Overpass" "Overpass Nerd Font" "Material Design Icons" ];
monospace = [ "Overpass Mono" "OverpassMono Nerd Font" "Material Design Icons" ];
};
};
};