16 lines
209 B
Nix
16 lines
209 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home = {
|
|
file = {
|
|
"${config.xdg.configHome}/tmux".source =
|
|
lib.custom.relativeToRoot "dotfiles/tmux";
|
|
};
|
|
|
|
packages = with pkgs; [tmux];
|
|
};
|
|
}
|