1
Fork 0
satellite/home/features/desktop/alacritty.nix
2023-11-11 06:55:14 +01:00

24 lines
421 B
Nix

{ config, lib, ... }:
{
stylix.targets.alacritty.enable = true;
programs.alacritty = {
enable = true;
settings = {
window.opacity = lib.mkForce 0.5; # Conflicts with stylix
window.padding = {
x = 4;
y = 4;
};
env = {
TERM = "tmux-256color";
ALWAYS_TMUX = 1;
};
working_directory = "${config.home.homeDirectory}/Projects/";
};
};
}