Initialer Commit meiner lokalen Dateien

This commit is contained in:
2026-04-13 15:55:19 +02:00
commit 745f5733e1
8 changed files with 573 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
# Custom settings
settings = {
window = {
padding = {
x = 10;
y = 10;
};
opacity = 0.9;
};
font = {
size = 12.0;
normal = {
#family = "JetBrainsMono Nerd Font";
family = "FiraCode";
style = "Regular";
};
};
colors = {
# You can define themes here or import them
primary = {
background = "#1a1b26";
foreground = "#a9b1d6";
};
};
};
};
}