PogChamp
This commit is contained in:
@ -1,28 +1,49 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
window.dimensions = {
|
window.dimensions = {
|
||||||
lines = 4;
|
lines = 4;
|
||||||
columns = 200;
|
columns = 200;
|
||||||
|
};
|
||||||
|
font = {
|
||||||
|
size = 17;
|
||||||
|
normal = {
|
||||||
|
family = "TerminessNerdFont";
|
||||||
|
style = "Regular";
|
||||||
};
|
};
|
||||||
font = {
|
};
|
||||||
size = 17;
|
terminal = {
|
||||||
normal = {
|
shell = "tmux";
|
||||||
family = "FantasqueSansMono";
|
};
|
||||||
style = "Regular";
|
colors = {
|
||||||
};
|
primary = {
|
||||||
|
foreground = "#f2f4f8";
|
||||||
|
background = "#121212";
|
||||||
};
|
};
|
||||||
terminal = {
|
normal = {
|
||||||
shell = "tmux";
|
black = "#121212";
|
||||||
|
red = "#ee5396";
|
||||||
|
green = "#25be6a";
|
||||||
|
yellow = "#08bdba";
|
||||||
|
blue = "#78a9ff";
|
||||||
|
magenta = "#be95ff";
|
||||||
|
cyan = "#33b1ff";
|
||||||
|
white = "#dfdfe0";
|
||||||
};
|
};
|
||||||
colors = {
|
bright = {
|
||||||
primary = {
|
black = "#525252";
|
||||||
foreground = "#FFFFFF";
|
red = "#ff7eb6";
|
||||||
background = "#121212";
|
green = "#42be65";
|
||||||
};
|
yellow = "#3ddbd9";
|
||||||
|
blue = "#82cfff";
|
||||||
|
magenta = "#df99ff";
|
||||||
|
cyan = "#6ea6ff";
|
||||||
|
white = "#ffffff";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user