mirror of
https://github.com/blahai/nyx.git
synced 2025-02-24 09:48:56 -05:00
11 lines
169 B
Nix
11 lines
169 B
Nix
{ pkgs, lib, config } :
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
window.opacity = 0.9;
|
|
padding = { x = 5; y = 5; };
|
|
};
|
|
};
|
|
}
|