init
This commit is contained in:
21
home/alacritty.nix
Normal file
21
home/alacritty.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user