1
Fork 0
satellite/home/adrielus/features/desktop/common/alacritty.nix
Matei Adriel 1cd3d7a903
Hyprland
2023-05-24 03:17:09 +02:00

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/";
};
};
}