Update alacritty config, use as default

This commit is contained in:
2025-07-04 14:41:58 +02:00
parent 3bb8db1349
commit 07274a0364
5 changed files with 8 additions and 17 deletions

View File

@ -28,10 +28,6 @@
};
# Various flakes
alacritty-theme = {
url = "github:alacritty/alacritty-theme";
flake = false;
};
yazi-flavors = {
url = "github:yazi-rs/flavors";
flake = false;

View File

@ -8,6 +8,7 @@
./features/neovim
./features/ghostty
./features/wezterm
./features/alacritty
./features/yazi
./features/emacs
@ -20,7 +21,7 @@
hostName = "aspi";
is-nixos = true;
terminal = "ghostty";
terminal = "alacritty";
# ------- ----------
# | eDP-1 | | HDMI-A-1 |

View File

@ -1,3 +0,0 @@
import = [
"~/.config/alacritty/theme/themes/smoooooth.toml"
]

View File

@ -1,15 +1,12 @@
{
lib,
pkgs,
inputs,
config,
...
}: {
home.packages = with pkgs; [alacritty];
home.file = {
".config/alacritty/theme".source = "${inputs.alacritty-theme}";
".config/alacritty/alacritty.toml".source = ./alacritty.toml;
programs.alacritty = {
enable = true;
settings = {};
theme = "smoooooth";
};
home.sessionVariables.TERMINAL = lib.mkIf (config.terminal == "alacritty") "alacritty";

View File

@ -2,14 +2,14 @@
lib,
config,
...
}: {
}:
{
programs.ghostty = {
enable = true;
enableFishIntegration = true;
settings = {
theme = "catppuccin-mocha";
font-size = 12;
font-family = "DejaVu Sans";
};
};