sync repo

This commit is contained in:
notkaori
2025-08-20 09:38:25 -06:00
parent 51f2ce340f
commit 1f3b39008e
17 changed files with 916 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
alacritty
];
programs.alacritty = {
enable = true;
settings = {
colors = {
normal = {
black = "#2b3339";
blue = "#7fbbb3";
cyan = "#83c092";
green = "#a7c080";
magenta = "#d699b6";
red = "#e67e80";
white = "#fffff7";
yellow = "#dbbc7f";
};
primary = {
background = "#2b3339";
bright_foreground = "#fff9dd";
dim_foreground = "#a09377";
foreground = "#d3c6aa";
};
};
font = {
italic = {
family = "Hack Nerd Font";
style = "Regular";
};
normal = {
family = "Hack Nerd Font";
style = "Regular";
};
};
window.padding = {x=15;y=15;};
};
};
}