mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
27 lines
385 B
Nix
27 lines
385 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
window = {
|
|
opacity = 0.9;
|
|
dynamic_padding = true;
|
|
padding = {
|
|
x = 5;
|
|
y = 5;
|
|
};
|
|
};
|
|
font = {
|
|
normal = {
|
|
family = "SpaceMono Nerd Font";
|
|
style = "Regular";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|