refactor(home): organize home manager modules

This commit is contained in:
2026-03-11 21:25:32 +01:00
parent 16d14bcb1e
commit 030010a66f
16 changed files with 33 additions and 33 deletions
+19
View File
@@ -0,0 +1,19 @@
{ pkgs, dotsPath, ... }:
{
config = {
home.packages = with pkgs; [
tmuxp
reptyr
];
programs.tmux = {
enable = true;
extraConfig = builtins.readFile (dotsPath + "/.config/tmux/tmux.conf");
};
home.file = {
".config/tmux/hooks/tmux.ssh.conf".source = dotsPath + "/.config/tmux/hooks/tmux.ssh.conf";
};
};
}