pointfichiers/term/alacritty/default.nix

14 lines
235 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-09-18 13:49:32 +02:00
home.file = {
".config/alacritty/alacritty.toml".source = ./alacritty.toml;
};
home.packages = with pkgs; [
alacritty
fira-code-nerdfont
fira-code-symbols
2024-09-18 13:49:32 +02:00
];
2024-09-18 14:55:52 +02:00
fonts.fontconfig.enable = true;
2024-09-18 13:49:32 +02:00
}