20 lines
387 B
Nix
20 lines
387 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"; };
|
|
working_directory = "${config.home.homeDirectory}/Projects/";
|
|
};
|
|
};
|
|
}
|