nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 536beb6baa1e72f7c0613c9a755506152f588057
parent 7c9c7a2af3423771f77109b35f90de8834a15b1b
Author: Toni Brown <me@tb148.net>
Date:   Thu, 12 Mar 2026 12:46:28 +0800

use alacritty instead of wezterm

Diffstat:
Mhome.nix | 12+++++++++---
Dwezterm.lua | 14--------------
2 files changed, 9 insertions(+), 17 deletions(-)

diff --git a/home.nix b/home.nix @@ -69,6 +69,15 @@ vokoscreen-ng ]; + programs.alacritty.enable = true; + programs.alacritty.settings = { + font.normal.family = "Sarasa Term SC"; + font.size = 12; + terminal.shell = "nu"; + window.dimensions.columns = 128; + window.dimensions.lines = 32; + }; + programs.bat.enable = true; programs.direnv.enable = true; @@ -137,9 +146,6 @@ programs.pay-respects.enable = true; - programs.wezterm.enable = true; - programs.wezterm.extraConfig = builtins.readFile ./wezterm.lua; - programs.zoxide.enable = true; programs.zsh.enable = true; diff --git a/wezterm.lua b/wezterm.lua @@ -1,14 +0,0 @@ -local wezterm = require 'wezterm' -local config = wezterm.config_builder() -config.color_scheme = 'Catppuccin Mocha' -config.default_prog = { 'nu' } -config.initial_cols = 128 -config.initial_rows = 32 -config.font = wezterm.font_with_fallback { - 'Iosevka Nerd Font', - 'Sarasa Mono SC', -} -config.font_size = 12 -config.mux_enable_ssh_agent = false -config.use_fancy_tab_bar = false -return config;