From 4a65050f92dae72fc8f32f1cff3b5da534aaf858 Mon Sep 17 00:00:00 2001 From: Wong Ding Feng Date: Fri, 23 Jan 2026 01:52:59 +0800 Subject: [PATCH] t --- home-manager/home.nix | 4 ++-- home-manager/modules/neovim.nix | 4 ++-- home-manager/modules/tmux.nix | 17 +++++++++-------- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 25e9fb4..760c76c 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -16,7 +16,7 @@ ./platform/darwin.nix ./platform/linux.nix - ./modules/packages.nix + ./modules/inbox/packages.nix ./modules/shells.nix ./modules/fish.nix @@ -29,7 +29,7 @@ # Doom Emacs via nix-doom-emacs-unstraightened ./modules/doom-emacs.nix - ./modules/inbox.nix + ./modules/inbox/inbox.nix # If you want to use modules your own flake exports (from modules/home-manager): # inputs.self.homeManagerModules.example diff --git a/home-manager/modules/neovim.nix b/home-manager/modules/neovim.nix index 64ca121..e43ec80 100644 --- a/home-manager/modules/neovim.nix +++ b/home-manager/modules/neovim.nix @@ -307,8 +307,8 @@ require('lualine').setup({ options = { theme = 'auto', - component_separators = { left = '', right = '' }, - section_separators = { left = '', right = '' }, + component_separators = { left = "", right = "" }, + section_separators = { left = "", right = "" }, globalstatus = true, }, sections = { diff --git a/home-manager/modules/tmux.nix b/home-manager/modules/tmux.nix index 110f256..46265b0 100644 --- a/home-manager/modules/tmux.nix +++ b/home-manager/modules/tmux.nix @@ -53,13 +53,14 @@ tmux-thumbs # Fuzzy session management - { - plugin = sessionx; - extraConfig = '' - set -g @sessionx-bind 'o' - set -g @sessionx-zoxide-mode 'on' - ''; - } + # Note: sessionx is not packaged in nixpkgs, uncomment if you add it as an overlay + # { + # plugin = sessionx; + # extraConfig = '' + # set -g @sessionx-bind 'o' + # set -g @sessionx-zoxide-mode 'on' + # ''; + # } # URL opening fzf-tmux-url @@ -81,7 +82,7 @@ # Status bar modules set -g @catppuccin_status_modules_right 'session date_time' - set -g @catppuccin_status_modules_left '' + set -g @catppuccin_status_modules_left '''' set -g @catppuccin_date_time_text '%H:%M' ''; }