stuff and things

This commit is contained in:
zack 2025-04-07 13:07:15 -04:00
parent fe357582a6
commit b5542e492f
No known key found for this signature in database
GPG key ID: EE8A2B709E2401D1
36 changed files with 1059 additions and 1069 deletions

View file

@ -12,22 +12,56 @@ in {
enable = mkBoolOpt false "Enable Alacritty Term";
fonts = {
# normal = {
# family = mkStringOpt "Cozette" "The Family of the font";
# # style = mkStringOpt "ExtraBold" "The Style of the font";
# };
# bold = {
# family = mkStringOpt "Cozette" "The Family of the font";
# # style = mkStringOpt "Heavy" "The Style of the font";
# };
# italic = {
# family = mkStringOpt "Cozette" "The Family of the font";
# # style = mkStringOpt "ExtraBold Italic" "The Style of the font";
# };
# bold_italic = {
# family = mkStringOpt "Cozette" "The Family of the font";
# # style = mkStringOpt "Heavy Italic" "The Style of the font";
# };
normal = {
family = mkStringOpt "Iosevka" "The Family of the font";
style = mkStringOpt "ExtraBold" "The Style of the font";
family = mkStringOpt "Iosevka Nerd Font Mono" "The Family of the font";
style = mkStringOpt "SemiBold SemiExtended" "The Style of the font";
};
bold = {
family = mkStringOpt "Iosevka" "The Family of the font";
style = mkStringOpt "Heavy" "The Style of the font";
family = mkStringOpt "Iosevka Nerd Font Mono" "The Family of the font";
style = mkStringOpt "Bold SemiExtended" "The Style of the font";
};
italic = {
family = mkStringOpt "Iosevka" "The Family of the font";
style = mkStringOpt "ExtraBold Italic" "The Style of the font";
family = mkStringOpt "Iosevka Nerd Font Mono" "The Family of the font";
style = mkStringOpt "SemiBold Italic SemiExtended" "The Style of the font";
};
bold_italic = {
family = mkStringOpt "Iosevka" "The Family of the font";
style = mkStringOpt "Heavy Italic" "The Style of the font";
family = mkStringOpt "Iosevka Nerd Font Mono" "The Family of the font";
style = mkStringOpt "Bold Italic SemiExtended" "The Style of the font";
};
# normal = {
# family = mkStringOpt "PragmataPro" "The Family of the font";
# # style = mkStringOpt "" "The Style of the font";
# };
# bold = {
# family = mkStringOpt "PragmataPro" "The Family of the font";
# style = mkStringOpt "Bold" "The Style of the font";
# };
# italic = {
# family = mkStringOpt "PragmataPro" "The Family of the font";
# style = mkStringOpt "Italic" "The Style of the font";
# };
# bold_italic = {
# family = mkStringOpt "PragmataPro" "The Family of the font";
# style = mkStringOpt "Bold Italic" "The Style of the font";
# };
};
};
@ -37,14 +71,29 @@ in {
catppuccin.enable = true;
settings = {
colors = {
primary.background = "#11111b";
};
env = {
term = "xterm-256color";
};
cursor = {
style = {
shape = "Beam";
};
vi_mode_style = {
shape = "Beam";
};
};
window = {
opacity = 0.95;
# opacity = 0.95;
padding = {
x = 20;
y = 20;
};
};
font = {
size = 16.0;
normal = cfg.fonts.normal;
bold = cfg.fonts.bold;
italic = cfg.fonts.italic;