xin/configs/alacritty.nix

33 lines
554 B
Nix
Raw Normal View History

2024-01-19 08:24:34 -07:00
{ pkgs, ... }:
let
settings = {
font = {
normal = {
family = "Go Mono";
};
size = 6;
};
2024-01-19 08:24:34 -07:00
colors = {
primary = {
background = "#ffffea";
foreground = "#000000";
};
};
};
settingsFormat = pkgs.formats.toml { };
settingsFile = settingsFormat.generate "alacritty.toml" settings;
in
{
config = {
environment = {
etc = {
"xdg/alacritty/alacritty.toml".text = builtins.readFile settingsFile;
};
2024-01-19 08:24:34 -07:00
};
fontSet = with pkgs; [
go-font
];
2024-01-19 08:24:34 -07:00
};
}