11 lines
331 B
Nix
11 lines
331 B
Nix
{ pkgs, util, config, ... }: {
|
|
font = pkgs.runCommandNoCC "font" {} ''
|
|
cp ${pkgs.nerdfonts.override { fonts = [ "Terminus" ]; }}/share/fonts/truetype/NerdFonts/TerminessNerdFontMono-Regular.ttf $out
|
|
'';
|
|
|
|
colors = util.trimTabs ''
|
|
background=#${config.style.color.bg.dark}
|
|
foreground=#${config.style.color.fg.light}
|
|
'';
|
|
}
|