2024-03-10 07:19:49 +00:00
|
|
|
{config, ...}: {
|
|
|
|
programs.alacritty = let
|
|
|
|
catppuccin-mocha = builtins.fromTOML (builtins.readFile ./catppuccin-mocha.toml);
|
|
|
|
in {
|
2024-01-30 16:10:12 +00:00
|
|
|
enable = true;
|
2024-03-10 07:19:49 +00:00
|
|
|
settings = with config.stylix;
|
|
|
|
{
|
|
|
|
font = {
|
|
|
|
size = fonts.sizes.applications;
|
|
|
|
normal = {
|
|
|
|
family = fonts.monospace.name;
|
|
|
|
style = "Regular";
|
|
|
|
};
|
2024-01-30 16:10:12 +00:00
|
|
|
};
|
2024-03-10 07:19:49 +00:00
|
|
|
window = {
|
|
|
|
opacity = opacity.terminal;
|
|
|
|
dynamic_title = true;
|
|
|
|
padding = {
|
|
|
|
x = 10;
|
|
|
|
y = 10;
|
|
|
|
};
|
|
|
|
decorations = "none";
|
|
|
|
};
|
|
|
|
live_config_reload = false;
|
|
|
|
selection.save_to_clipboard = true;
|
2024-03-12 15:34:27 +00:00
|
|
|
mouse.hide_when_typing = false;
|
2024-03-10 07:19:49 +00:00
|
|
|
}
|
|
|
|
// catppuccin-mocha;
|
2024-01-30 16:10:12 +00:00
|
|
|
};
|
|
|
|
}
|