feat: add alacritty

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2024-08-28 15:27:15 +02:00
parent a7af91e57e
commit 63f21c6a3f
Signed by: lander
GPG key ID: 0142722B4B0C536F
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ pkgs, self, ... }:
{
programs.alacritty = {
enable = true;
catppuccin.enable = true;
settings = {
env = {
TERM = "alacritty";
};
window = {
padding = {
x = 20;
y = 20;
};
};
live_config_reload = true;
scrolling.history = 100000;
};
};
}

View file

@ -6,6 +6,8 @@
...
}: {
imports = [
inputs.catppuccin.homeManagerModules.catppuccin
./git
];

View file

@ -2,5 +2,7 @@
{
imports = [
./global
./common/alacritty.nix
];
}