rename home dir

This commit is contained in:
2025-09-19 15:07:40 +00:00
parent d412f1ac6c
commit 2ab49fbfc8
30 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{ config, pkgs, ... }:
{
programs.alacritty = {
enable = true;
theme = "everforest_dark";
settings = {
font = {
italic = {
family = "Hack Nerd Font";
style = "Regular";
};
normal = {
family = "Hack Nerd Font";
style = "Regular";
};
};
window = {
opacity = 0.9;
blur = true;
padding = {x=0;y=15;};
};
};
};
}