2022-07-01 04:45:26 +03:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
2022-09-12 03:32:23 +03:00
|
|
|
settings.terminal.name = "wezterm";
|
2022-07-01 04:45:26 +03:00
|
|
|
home.packages = [pkgs.wezterm];
|
|
|
|
xdg.enable = true;
|
|
|
|
xdg.configFile = {
|
|
|
|
"wezterm/wezterm.lua".text = ''
|
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
local catppuccin = require("colors/catppuccin").setup {
|
|
|
|
-- whether or not to sync with the system's theme
|
|
|
|
sync = false,
|
|
|
|
-- the default/fallback flavour, when syncing is disabled
|
|
|
|
flavour = "mocha"
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2022-10-22 01:49:09 +03:00
|
|
|
font = wezterm.font("${config.settings.font.regular.name}"),
|
|
|
|
font_size = ${builtins.toJSON config.settings.font.regular.size},
|
2022-07-01 04:45:26 +03:00
|
|
|
default_cursor_style = "BlinkingBar",
|
|
|
|
enable_wayland = true,
|
|
|
|
enable_tab_bar = false,
|
2022-07-01 15:58:41 +03:00
|
|
|
colors = catppuccin,
|
|
|
|
window_background_opacity = 0.85
|
2022-07-01 04:45:26 +03:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
"wezterm/colors/catppuccin.lua".source = builtins.fetchurl {
|
|
|
|
url = "https://raw.githubusercontent.com/catppuccin/wezterm/65078e846c8751e9b4837a575deb0745f0c0512f/catppuccin.lua";
|
|
|
|
sha256 = "sha256:0cm8kjjga9k1fzgb7nqjwd1jdjqjrkkqaxcavfxdkl3mw7qiy1ib";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|