1
Fork 0
satellite/home/features/desktop/alacritty.nix
2023-05-28 05:24:36 +02:00

24 lines
427 B
Nix

{ config, pkgs, 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/";
};
};
}