20 lines
275 B
Nix
20 lines
275 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
|
|
terminal.shell = {
|
|
program = "${pkgs.tmux}/bin/tmux";
|
|
args = [ "new-session" "-A" "-s" "main" ];
|
|
};
|
|
|
|
window = {
|
|
opacity = 0.85;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|