2022-02-27 19:48:22 +01:00
|
|
|
{ depot, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
let
|
2022-05-04 17:54:33 +02:00
|
|
|
bins = depot.nix.getBins pkgs.alacritty [ "alacritty" ];
|
2022-02-27 19:48:22 +01:00
|
|
|
|
2022-04-19 15:08:14 +02:00
|
|
|
config =
|
2023-04-22 18:37:08 +02:00
|
|
|
{
|
|
|
|
alacritty-config = { font.size = 18; scolling.history = 1000000; };
|
|
|
|
# This disables the dpi-sensitive scaling (cause otherwise the font will be humongous on my laptop screen)
|
|
|
|
alacritty-env.WINIT_X11_SCALE_FACTOR = 1;
|
2022-04-19 15:08:14 +02:00
|
|
|
};
|
|
|
|
|
2023-04-22 18:37:08 +02:00
|
|
|
|
2022-04-19 15:08:14 +02:00
|
|
|
config-file = lib.pipe config.alacritty-config [
|
2022-02-27 19:48:22 +01:00
|
|
|
(lib.generators.toYAML { })
|
|
|
|
(pkgs.writeText "alacritty.conf")
|
|
|
|
];
|
|
|
|
|
|
|
|
|
2022-04-19 15:08:14 +02:00
|
|
|
alacritty = depot.nix.writeExecline "alacritty" { } (
|
|
|
|
(lib.concatLists (lib.mapAttrsToList (k: v: [ "export" k (toString v) ]) config.alacritty-env))
|
|
|
|
++ [
|
|
|
|
bins.alacritty
|
|
|
|
"--config-file"
|
|
|
|
config-file
|
|
|
|
"$@"
|
|
|
|
]
|
|
|
|
);
|
2022-02-27 19:48:22 +01:00
|
|
|
|
|
|
|
in
|
|
|
|
alacritty
|