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

20 lines
353 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2023-03-12 05:24:25 +01:00
stylix.targets.alacritty.enable = true;
programs.alacritty = {
enable = true;
settings = {
window.decorations = "none";
window.padding = {
x = 4;
y = 4;
};
2023-01-16 17:03:29 +01:00
env = { TERM = "tmux-256color"; };
working_directory = "${config.home.homeDirectory}/Projects/";
};
};
}