removed starship

This commit is contained in:
steven carpenter 2026-03-15 20:43:39 -04:00
parent 35289d7a97
commit 12cbfd1f98
10 changed files with 915 additions and 50 deletions

View file

@ -2,6 +2,7 @@
{
options.speccon18.hm.alacritty.enable = lib.mkEnableOption "Enable Alacritty";
config = lib.mkIf config.speccon18.hm.alacritty.enable {
programs.alacritty = {
enable = true;
@ -15,35 +16,29 @@
opacity = 1.0;
title = "Alacritty";
};
colors = {
primary = {
background = "#1d1f21";
foreground = "#c5c8c6";
};
cursor = {
text = "CellBackground";
cursor = "CellForeground";
};
general = {
import = ["~/.config/alacritty/themes/oasis-abyss.toml"];
};
font = {
normal = {
black = "#363537";
red = "#FC618D";
green = "#7BD88F";
yellow = "#FCE566";
blue = "#FD9353";
magenta = "#948AE3";
cyan = "#5AD4E6";
white = "#F7F1FF";
family = "Droid Sans Mono Nerd Font";
style = "Regular";
};
bright = {
black = "#69676C";
red = "#FC618D";
green = "#7BD88F";
yellow = "#FCE566";
blue = "#FD9353";
magenta = "#948AE3";
cyan = "#5AD4E6";
white = "#F7F1FF";
bold = {
family = "Droid Sans Mono Nerd Font";
style = "Bold";
};
italic = {
family = "Droid Sans Mono Nerd Font";
style = "Italic";
};
bold_italic = {
family = "Droid Sans Mono Nerd Font";
style = "Bold Italic";
};
size = 12.0;
};
};
};

View file

@ -6,9 +6,8 @@
userName = "specCon18";
userEmail = "steven.carpenter@skdevstudios.com";
extraConfig = {
init = {
defaultBranch = "main";
};
init.defaultBranch = "main";
pull.rebase = false;
};
};
};

View file

@ -1,10 +0,0 @@
{ pkgs, config, lib, ...}:
{
options.speccon18.hm.starship.enable = lib.mkEnableOption "enables specs custom starship config";
config = lib.mkIf config.speccon18.hm.starship.enable {
programs.starship = {
enable = true;
enableZshIntegration = true;
};
};
}