1
Fork 0
satellite/modules/applications/alacritty.nix
2022-02-07 13:27:36 +02:00

31 lines
540 B
Nix

{ pkgs, ... }:
let
githubAlacrittyTheme =
"${pkgs.githubNvimTheme}/terminal/alacritty/github_light.yml";
in
{
home-manager.users.adrielus.programs.alacritty = {
enable = true;
settings = {
import = [ githubAlacrittyTheme ];
window = {
decorations = "none";
padding = {
x = 8;
y = 8;
};
gtk_theme_variant = "light";
};
# transparent bg:)
# background_opacity = 0.6;
fonts.normal.family = "Nerd Font Source Code Pro";
};
};
}