nixos-config/home/alacritty.nix

44 lines
862 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
{
2021-07-29 12:24:01 +02:00
options.my.home.alacritty.enable = (lib.mkEnableOption "Alacritty terminal") // { default = config.my.home.x.enable; };
2021-04-22 00:25:39 +02:00
config = lib.mkIf cfg.enable {
programs.alacritty = {
enable = true;
2021-04-22 00:25:39 +02:00
settings = {
2021-07-24 01:53:01 +02:00
env = {
WINIT_X11_SCALE_FACTOR = "1.0";
};
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
};
}