1
Fork 0
satellite/modules/applications/alacritty.nix

30 lines
528 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
githubAlacrittyTheme =
"${pkgs.githubNvimTheme}/terminal/alacritty/github_light.yml";
in {
2020-04-12 12:45:29 +02:00
home-manager.users.adrielus.programs.alacritty = {
enable = true;
settings = {
import = [ githubAlacrittyTheme ];
2020-04-12 12:45:29 +02:00
window = {
2021-11-29 15:00:11 +01:00
decorations = "none";
2020-04-12 12:45:29 +02:00
padding = {
2021-11-29 15:00:11 +01:00
x = 8;
2020-04-12 12:45:29 +02:00
y = 8;
};
2021-11-29 15:00:11 +01:00
gtk_theme_variant = "light";
};
2020-04-12 12:45:29 +02:00
2020-04-12 14:09:13 +02:00
# transparent bg:)
2022-01-13 07:46:04 +01:00
background_opacity = 0.6;
2021-11-29 15:00:11 +01:00
fonts.normal.family = "Source Code Pro";
2020-04-12 12:45:29 +02:00
};
};
}