36 lines
1 KiB
Nix
36 lines
1 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [ (nerdfonts.override { fonts = [ "FiraCode" ]; }) ];
|
|
programs.foot = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
term = "xterm-256color";
|
|
font = "FiraCode Nerd Font:size=12";
|
|
dpi-aware = "yes";
|
|
};
|
|
colors = {
|
|
# Catppuccin Macchiato
|
|
foreground = "cad3f5"; # Text
|
|
background = "24273a"; # Base
|
|
regular0 = "494d64"; # Surface 1
|
|
regular1 = "ed8796"; # red
|
|
regular2 = "a6da95"; # green
|
|
regular3 = "eed49f"; # yellow
|
|
regular4 = "8aadf4"; # blue
|
|
regular5 = "f5bde6"; # pink
|
|
regular6 = "8bd5ca"; # teal
|
|
regular7 = "b8c0e0"; # Subtext 1
|
|
bright0 = "5b6078"; # Surface 2
|
|
bright1 = "ed8796"; # red
|
|
bright2 = "a6da95"; # green
|
|
bright3 = "eed49f"; # yellow
|
|
bright4 = "8aadf4"; # blue
|
|
bright5 = "f5bde6"; # pink
|
|
bright6 = "8bd5ca"; # teal
|
|
bright7 = "a5adcb"; # Subtext 0
|
|
};
|
|
};
|
|
};
|
|
}
|