22 lines
418 B
Nix
22 lines
418 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
general.import = [ "${config.home.homeDirectory}/.config/alacritty/colors.toml" ];
|
|
|
|
env.TERM = "xterm-256color";
|
|
window = {
|
|
opacity = 0.9;
|
|
padding = { x = 10; y = 10; };
|
|
};
|
|
font.size = 12;
|
|
|
|
terminal.shell = {
|
|
program = "${pkgs.zellij}/bin/zellij";
|
|
};
|
|
};
|
|
};
|
|
}
|