Add alacritty
This commit is contained in:
parent
2f1b04728d
commit
0fb5f81b83
58
modules/user/config/alacritty.nix
Normal file
58
modules/user/config/alacritty.nix
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
env = {
|
||||||
|
TERM = "alacritty";
|
||||||
|
LANG = "en_US.UTF-8";
|
||||||
|
LC_CTYPE = "en_US.UTF-8";
|
||||||
|
};
|
||||||
|
|
||||||
|
window = {
|
||||||
|
opacity = 0.4;
|
||||||
|
};
|
||||||
|
|
||||||
|
font = {
|
||||||
|
normal = {
|
||||||
|
family = "JetBrainsMonoNL Nerd Font";
|
||||||
|
style = "Regular";
|
||||||
|
};
|
||||||
|
|
||||||
|
size = 11;
|
||||||
|
};
|
||||||
|
|
||||||
|
colors = {
|
||||||
|
primary = {
|
||||||
|
background = "#001017";
|
||||||
|
foreground = "#b7b8b9";
|
||||||
|
};
|
||||||
|
|
||||||
|
cursor = {
|
||||||
|
text = "#0c0d0e";
|
||||||
|
cursor = "#b7b8b9";
|
||||||
|
};
|
||||||
|
|
||||||
|
normal = {
|
||||||
|
black = "#000000";
|
||||||
|
red = "#e31a1c";
|
||||||
|
green = "#31a345";
|
||||||
|
yellow = "#dca060";
|
||||||
|
blue = "#3182bd";
|
||||||
|
magenta = "#756bb1";
|
||||||
|
cyan = "#80b1d3";
|
||||||
|
white = "#b7b8b9";
|
||||||
|
};
|
||||||
|
|
||||||
|
bright = {
|
||||||
|
black = "#737475";
|
||||||
|
red = "#e31a1c";
|
||||||
|
green = "#31a345";
|
||||||
|
yellow = "#dca060";
|
||||||
|
blue = "#3182bd";
|
||||||
|
magenta = "#756bb1";
|
||||||
|
cyan = "#80b1d3";
|
||||||
|
white = "#fcfdfe";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -17,6 +17,10 @@
|
||||||
xdg-utils
|
xdg-utils
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
alacritty = import ./config/alacritty.nix;
|
||||||
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue