2023-05-24 03:17:09 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
2023-01-12 20:49:08 +01:00
|
|
|
{
|
2023-03-12 05:24:25 +01:00
|
|
|
stylix.targets.alacritty.enable = true;
|
|
|
|
|
2023-01-12 20:49:08 +01:00
|
|
|
programs.alacritty = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
settings = {
|
2023-05-24 03:17:09 +02:00
|
|
|
window.opacity = lib.mkForce 0.5; # Conflicts with stylix
|
2023-01-12 20:49:08 +01:00
|
|
|
window.padding = {
|
|
|
|
x = 4;
|
|
|
|
y = 4;
|
|
|
|
};
|
|
|
|
|
2023-01-16 17:03:29 +01:00
|
|
|
env = { TERM = "tmux-256color"; };
|
2023-01-12 20:49:08 +01:00
|
|
|
working_directory = "${config.home.homeDirectory}/Projects/";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|