remove code under comments & add home-server basic config (WIP)

This commit is contained in:
2026-01-31 19:20:54 +03:00
parent c82a74c786
commit 94ab681057
17 changed files with 2008 additions and 129 deletions
+13
View File
@@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
keyMode = "vi";
historyLimit = 5000;
mouse = true;
newSession = true;
shell = "${pkgs.zsh}/bin/zsh";
};
}