mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
11 lines
180 B
Nix
11 lines
180 B
Nix
{ pkgs }:
|
|
|
|
rec {
|
|
base16 = mapAttrs (_: toString) pkgs.base16.shell.shell256;
|
|
|
|
font = {
|
|
name = "FantasqueSansMono Nerd Font";
|
|
size = "10";
|
|
size_css = "14px";
|
|
};
|
|
}
|