remove wezterm

This commit is contained in:
twoneis 2025-01-10 21:36:55 +01:00
parent 9f31b9f3db
commit 87e33f4ea0
2 changed files with 0 additions and 53 deletions

View file

@ -45,11 +45,6 @@ in mkIf conf.apps.enable {
};
};
programs.wezterm = {
enable = true;
# colorSchemes = import ./wezterm.theme.nix { config = config; };
};
programs.alacritty = {
enable = true;
settings = import ./alacritty.conf.nix { config = config; };

View file

@ -1,48 +0,0 @@
{ config, ... }: let
inherit (config) theme;
in {
rosepine = {
foreground = theme.text;
background = theme.base;
cursor_bg = theme.highlight-high;
cursor_fg = theme.text;
cursor_border = theme.highlight-high;
selection_bg = "#2a283e";
selection_fg = theme.text;
ansi = [
theme.overlay theme.love theme.pine theme.gold
theme.foam theme.iris theme.rose theme.text
];
brights = [
theme.muted theme.love theme.pine theme.gold
theme.foam theme.iris theme.rose theme.text
];
tab_bar = {
background = theme.base;
active_tab = {
bg_color = theme.overlay;
fg_color = theme.text;
};
inactive_tab = {
bg_color = theme.base;
fg_color = theme.muted;
};
inactive_tab_hover = {
bg_color = theme.overlay;
fg_color = theme.text;
};
new_tab = {
bg_color = theme.base;
fg_color = theme.muted;
};
new_tab_hover = {
bg_color = theme.overlay;
fg_color = theme.text;
};
inactive_tab_edge = theme.muted;
};
};
}