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