18 lines
244 B
Nix
18 lines
244 B
Nix
|
|
{
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
{
|
||
|
|
programs.alacritty = {
|
||
|
|
enable = true;
|
||
|
|
theme = "catppuccin_mocha";
|
||
|
|
settings = {
|
||
|
|
font = {
|
||
|
|
normal = {
|
||
|
|
family = "FiraCode Nerd Font";
|
||
|
|
style = "Regular";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|