refactoring to more granular flakes and modules

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-10-21 22:12:23 -05:00
parent 6570da6f33
commit 50825c9b84
52 changed files with 2501 additions and 9 deletions

View file

@ -0,0 +1,19 @@
{
lib,
pkgs,
...
}:
{
environment.systemPackages = [
pkgs.tmux
];
environment.shellAliases = {
tat = "tmux attach-session";
t = "tmux";
};
environment.shellInit = lib.concatStringsSep "\n\n" [
(builtins.readFile ./tmux_helpers.sh)
];
}