This commit is contained in:
Michael Thomson 2025-02-04 11:05:48 -05:00
parent 6f8e25bae3
commit f48cbf893e
4 changed files with 14 additions and 0 deletions

View File

@ -40,6 +40,10 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
man-pages man-pages
man-pages-posix man-pages-posix
(python3.withPackages (python-pkgs: with python-pkgs; [
websocket-client
websockets
]))
]; ];
services = { services = {

View File

@ -80,6 +80,10 @@
nodejs nodejs
taskwarrior-tui taskwarrior-tui
sbcl sbcl
hidden-bar
weechat
android-tools
nchat
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;

View File

@ -88,6 +88,11 @@ lib,
key = "<leader>zn"; key = "<leader>zn";
action = "<cmd>ZkNew<CR>"; action = "<cmd>ZkNew<CR>";
} }
{
mode = "n";
key = "<leader>zj";
action = "<cmd>ZkNew { dir = \"journal/daily\" } <CR>";
}
# quickfix/location list # quickfix/location list
{ {
mode = "n"; mode = "n";

View File

@ -9,6 +9,7 @@
programs = { programs = {
tmux = { tmux = {
enable = true; enable = true;
terminal = "tmux-256color";
shortcut = "Space"; shortcut = "Space";
mouse = true; mouse = true;
baseIndex = 1; baseIndex = 1;