1
Fork 0
satellite/home/features/desktop/alacritty.nix

24 lines
427 B
Nix
Raw Normal View History

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