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