Evie Litherland-Smith
432207a239
Re-enable stylix auto mode, disable specific cases where there's a better theme implementation (emacs, alacritty) Update use of catppuccin to tokyonight theme, probably missed some
28 lines
604 B
Nix
28 lines
604 B
Nix
{ pkgs, tokyonight-folke, ... }:
|
|
|
|
{
|
|
stylix.targets.alacritty.enable = false;
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
import = [ "${tokyonight-folke}/extras/alacritty/tokyonight_night.yml" ];
|
|
window = {
|
|
dynamic_title = true;
|
|
padding = {
|
|
x = 10;
|
|
y = 10;
|
|
};
|
|
decorations = "none";
|
|
opacity = 0.8;
|
|
};
|
|
font = {
|
|
normal.family = "Fira Mono";
|
|
size = 14.0;
|
|
};
|
|
selection.save_to_clipboard = true;
|
|
live_config_reload = true;
|
|
mouse.hide_when_typing = true;
|
|
};
|
|
};
|
|
}
|