mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
11 lines
233 B
Nix
11 lines
233 B
Nix
{ 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 ];
|
|
|
|
}
|