mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-06 06:58:41 +00:00
19 lines
356 B
Nix
19 lines
356 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.nerdfonts.override {fonts = ["FiraCode" "DroidSansMono"];})
|
|
];
|
|
}
|