mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-05 22:48:39 +00:00
20 lines
352 B
Nix
20 lines
352 B
Nix
{pkgs, ...}: {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
font = {
|
|
normal = {
|
|
family = "FiraCode Nerd Font Mono";
|
|
};
|
|
};
|
|
terminal = {shell = "${pkgs.zsh}/bin/zsh";};
|
|
};
|
|
};
|
|
|
|
home.packages = [
|
|
pkgs.alacritty
|
|
pkgs.nerd-fonts.fira-code
|
|
pkgs.nerd-fonts.droid-sans-mono
|
|
];
|
|
}
|