mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ pkgs, lib, config, ... }:
|
|
let
|
|
colourNames =
|
|
[ "black" "red" "green" "yellow" "blue" "magenta" "cyan" "white" ];
|
|
colours = lib.getAttrs colourNames config.niveum.colours;
|
|
alacrittyConfig = {
|
|
background_opacity = 0.9;
|
|
colors = {
|
|
primary = { inherit (config.niveum.colours) background foreground; };
|
|
normal = lib.mapAttrs (_: colour: colour.dark) colours;
|
|
bright = lib.mapAttrs (_: colour: colour.bright) colours;
|
|
};
|
|
font = {
|
|
normal.family = "Monospace";
|
|
size = config.niveum.fonts.size - 2;
|
|
};
|
|
key_bindings = [
|
|
{
|
|
key = "Add";
|
|
mods = "Control";
|
|
action = "IncreaseFontSize";
|
|
}
|
|
{
|
|
key = "Minus";
|
|
mods = "Control";
|
|
action = "DecreaseFontSize";
|
|
}
|
|
{
|
|
key = "Key0";
|
|
mods = "Control";
|
|
action = "ResetFontSize";
|
|
}
|
|
];
|
|
};
|
|
in {
|
|
environment.variables.TERMINAL = "alacritty";
|
|
|
|
environment.systemPackages = [
|
|
pkgs.unstable.alacritty
|
|
];
|
|
|
|
home-manager.users.me.xdg.configFile = {
|
|
"alacritty/alacritty.yml".text = builtins.toJSON alacrittyConfig;
|
|
};
|
|
}
|