18 lines
347 B
Nix
18 lines
347 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.foot = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
font = "JetBrainsMono Nerd Font:size=16";
|
|
padding = "8x8";
|
|
};
|
|
colors = {
|
|
background = "0f172a";
|
|
foreground = "f8fafc";
|
|
};
|
|
};
|
|
};
|
|
}
|