nix/home/android/default.nix

16 lines
348 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
pkgs,
...
}: {
font = pkgs.runCommandNoCC "font" { } ''
cp ${pkgs.nerdfonts.override { fonts = [ "Terminus" ]; }}/share/fonts/truetype/NerdFonts/TerminessNerdFontMono-Regular.ttf $out
'';
2024-11-04 04:37:29 +03:00
colors = with config.module.style.color; {
background = "#${bg.dark}";
cursor = "#${fg.light}";
foreground = "#${fg.light}";
};
}