Files
nixos/home/lukas/common/alacritty.nix
T

20 lines
323 B
Nix

{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
font.normal.family = "FiraCode Nerd Font";
terminal.shell = {
program = "${pkgs.tmux}/bin/tmux";
args = [ "new-session" "-A" "-s" "main" ];
};
window = {
opacity = 0.85;
};
};
};
}