Update shell and tasks

This commit is contained in:
Martin Pander
2024-05-17 14:18:57 +02:00
parent 6d106b954d
commit 85c6ae78fb
4 changed files with 50 additions and 17 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
programs.tmux = {
@ -58,8 +58,9 @@
'';
};
home.shellAliases = {
"o" = "tmuxp";
"ol" = "tmuxp load";
};
home.shellAliases = lib.mkMerge [ {
"o" = "tmuxp";
"ol" = "tmuxp load";
}
];
}