Initial Commit

This commit is contained in:
2024-10-02 00:54:05 -05:00
commit 46ebfc5cb6
45 changed files with 4120 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{
description = "Tmux config";
inputs = {};
outputs = { self, ... }: {
hmModule = import ./tmux.nix;
};
}

View File

@@ -0,0 +1,23 @@
{ config, lib, pkgs, ... }: {
programs.tmux = {
enable = true;
clock24 = true;
mouse = true;
baseIndex = 1;
keyMode = "vi";
prefix = "C-b";
shell = "${pkgs.zsh}/bin/zsh";
};
}