initial commit

This commit is contained in:
2024-12-31 04:29:58 -05:00
commit 69ed9b2d4d
41 changed files with 4509 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
[colors.bright]
black = "#5c5855"
blue = "#01a0e4"
cyan = "#b5e4f4"
green = "#01a252"
magenta = "#a16a94"
red = "#db2d20"
white = "#f7f7f7"
yellow = "#fded02"
[colors.cursor]
cursor = "#a5a2a2"
text = "#090300"
[colors.normal]
black = "#090300"
blue = "#01a0e4"
cyan = "#b5e4f4"
green = "#01a252"
magenta = "#a16a94"
red = "#db2d20"
white = "#a5a2a2"
yellow = "#fded02"
[colors.primary]
background = "#0d0d0d"
foreground = "#a5a2a2"
[font]
size = 7.0
[font.normal]
family = "monospace"
style = "Regular"
[terminal]
[terminal.shell]
program = "/etc/profiles/per-user/synchronous/bin/zsh"

View File

@@ -0,0 +1,11 @@
{
builtins,
lib,
...
}: {
programs.alacritty = {
enable = true;
};
programs.alacritty.settings = lib.trivial.importTOML ./alacritty.toml;
}