From f48cbf893e7a5283b3b2f49be6dd098f716aee47 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Tue, 4 Feb 2025 11:05:48 -0500 Subject: [PATCH] update --- hosts/macbook/configuration.nix | 4 ++++ hosts/macbook/home.nix | 4 ++++ modules/home-manager/nixvim/default.nix | 5 +++++ modules/home-manager/tmux/default.nix | 1 + 4 files changed, 14 insertions(+) diff --git a/hosts/macbook/configuration.nix b/hosts/macbook/configuration.nix index 049aa6e..6b8ddc5 100644 --- a/hosts/macbook/configuration.nix +++ b/hosts/macbook/configuration.nix @@ -40,6 +40,10 @@ environment.systemPackages = with pkgs; [ man-pages man-pages-posix + (python3.withPackages (python-pkgs: with python-pkgs; [ + websocket-client + websockets + ])) ]; services = { diff --git a/hosts/macbook/home.nix b/hosts/macbook/home.nix index c59e265..6482f59 100644 --- a/hosts/macbook/home.nix +++ b/hosts/macbook/home.nix @@ -80,6 +80,10 @@ nodejs taskwarrior-tui sbcl + hidden-bar + weechat + android-tools + nchat ]; programs.home-manager.enable = true; diff --git a/modules/home-manager/nixvim/default.nix b/modules/home-manager/nixvim/default.nix index 7507530..898d170 100644 --- a/modules/home-manager/nixvim/default.nix +++ b/modules/home-manager/nixvim/default.nix @@ -88,6 +88,11 @@ lib, key = "zn"; action = "ZkNew"; } + { + mode = "n"; + key = "zj"; + action = "ZkNew { dir = \"journal/daily\" } "; + } # quickfix/location list { mode = "n"; diff --git a/modules/home-manager/tmux/default.nix b/modules/home-manager/tmux/default.nix index 74f67f1..44d261a 100644 --- a/modules/home-manager/tmux/default.nix +++ b/modules/home-manager/tmux/default.nix @@ -9,6 +9,7 @@ programs = { tmux = { enable = true; + terminal = "tmux-256color"; shortcut = "Space"; mouse = true; baseIndex = 1;