mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
23 lines
382 B
Nix
23 lines
382 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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|