more cli stuff

This commit is contained in:
blahai 2024-10-13 02:08:10 +03:00
parent 4c197d0692
commit 9f0b174303
No known key found for this signature in database
3 changed files with 105 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, lib, config } :
{
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.9;
padding = { x = 5; y = 5; };
};
};
}