forked from pub-solar/os
18e9b4a009
Co-authored-by: Hendrik Sokolowski <hensoko@gssws.de> Reviewed-on: https://git.b12f.io/pub-solar/os/pulls/109 Reviewed-by: Benjamin Bädorf <b12f@noreply.example.org> Reviewed-by: teutat3s <teutates@mailbox.org>
13 lines
240 B
Nix
13 lines
240 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
fonts = with pkgs; [ powerline-fonts dejavu_fonts ];
|
|
fontconfig.defaultFonts = {
|
|
monospace = [ "DejaVu Sans Mono for Powerline" ];
|
|
sansSerif = [ "DejaVu Sans" ];
|
|
};
|
|
};
|
|
}
|
|
|