nixos/home/gui/alacritty.nix

22 lines
529 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-06-12 10:30:31 +01:00
programs.alacritty = {
enable = true;
settings = {
font = {
normal.family = "FiraCode Nerd Font";
size = 14;
};
window.opacity = 0.8;
import = [
(pkgs.fetchFromGitHub {
owner = "folke";
repo = "tokyonight.nvim";
rev = "cd5156f4b4a6c4c337a46deb0c0bd37319920833";
sha256 = "/ht+ixR1eyYR0la00Xq5q1gCsgb5Ly90JghERwbaDPQ=";
}
+ "/extras/alacritty/tokyonight_night.yml")
];
2023-06-12 10:30:31 +01:00
};
};
}