nixos-config/home/alacritty.nix

40 lines
748 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2021-04-22 00:25:39 +02:00
let
cfg = config.my.home.alacritty;
alacrittyTheme = config.my.theme.alacrittyTheme;
in
{
options.my.home.alacritty.enable = lib.mkEnableOption "Alacritty terminal";
config = lib.mkIf cfg.enable {
programs.alacritty = {
enable = true;
2021-04-22 00:25:39 +02:00
settings = {
window = {
padding = {
x = 8;
y = 8;
};
2021-04-22 00:25:39 +02:00
};
font = {
normal = {
family = "Iosevka Fixed";
style = "Medium";
};
size = 10.0;
2021-04-22 00:25:39 +02:00
};
colors = alacrittyTheme;
};
2021-04-22 00:25:39 +02:00
};
home.packages = with pkgs; [
iosevka-bin
];
# make sure font is discoverable
fonts.fontconfig.enable = true;
2021-04-22 00:25:39 +02:00
};
}