networking and fonts

This commit is contained in:
Noah Masur
2022-04-28 22:25:05 -04:00
parent 992496b1f0
commit 5404476552
5 changed files with 36 additions and 24 deletions

10
modules/desktop/fonts.nix Normal file
View File

@ -0,0 +1,10 @@
{ pkgs, font, ... }: {
fonts.fonts = with pkgs; [
font.package # Used for Vim and Terminal
font-awesome # Icons for i3
# siji # More icons for Polybar
];
fonts.fontconfig.defaultFonts.monospace = [ font.name ];
}