17 lines
191 B
Nix
17 lines
191 B
Nix
{
|
|
lib, config, pkgs, ...
|
|
}: let
|
|
cfg = config.tmux;
|
|
in {
|
|
options.tmux = {};
|
|
|
|
config = {
|
|
home.packages = [
|
|
pkgs.tmux
|
|
];
|
|
home.file = {
|
|
".config/tmux".source = ./tmux;
|
|
};
|
|
};
|
|
}
|