From 87e33f4ea08836d0432fa4db4e9b0062f89463c9 Mon Sep 17 00:00:00 2001 From: twoneis Date: Fri, 10 Jan 2025 21:36:55 +0100 Subject: [PATCH] remove wezterm --- modules/apps/programs.nix | 5 ---- modules/apps/wezterm.theme.nix | 48 ---------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 modules/apps/wezterm.theme.nix diff --git a/modules/apps/programs.nix b/modules/apps/programs.nix index 276aa54..485c403 100644 --- a/modules/apps/programs.nix +++ b/modules/apps/programs.nix @@ -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; }; diff --git a/modules/apps/wezterm.theme.nix b/modules/apps/wezterm.theme.nix deleted file mode 100644 index 3642160..0000000 --- a/modules/apps/wezterm.theme.nix +++ /dev/null @@ -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; - }; - }; -}