Closed taylrfnt closed 13 minutes ago
We don't have an option for programs.tmux.baseIndex
, you can add tmux configuration using the following option:
https://daiderd.com/nix-darwin/manual/index.html#opt-programs.tmux.tmuxOptions._name_.text
{
programs.tmux.tmuxOptions.my-tmux-config.text = ''
set -g base-index 1
'';
}
Ah, I did not realize nix-darwin did not use all of the vanilla tmux configs. I'll poke around and see what I can get working. Many thanks!
After a few tweaks... for my purposes, programs.tmux.extraConfig
was sufficient. Thanks @Enzime !!!
Since I am new to nix-darwin I will ask another question which may be answered elsewhere as well...
My NixOS-based flake has some extra bells and whistles for tmux plugins (namely, being able to select & configure them directly like this):
programs.tmux = {
[...];
plugins = with pkgs; [
tmuxPlugins.cpu
{
plugin = tmuxPlugins.catppuccin;
extraConfig = ''
set -g @catppuccin_flavor mocha
'';
}
];
};
I couldn't get that to work via the tmuxOptions.text
option - is that something that just wouldn't be possible with nix-darwin, or more user error on my end?
(FWIW, I have those plugins imported and working via the extraConfig
option - I'm just trying to retain as much parity with my NixOS flake configs as possible 😄 )
I am attempting to migrate my tmux configs from a NixOS system to my MacOS workstation, and I am encountering errors when running a
darwin-rebuild
that seem to indicate that nix-darwin is unable to properly interpret/locate the tmux options:The baseIndex option is a tmux parameter in the standard nix program configs.
I can create a separate
tmux.conf
file if need be as a temporary fix, but I am hoping this is error on my use of nix-darwin. Let me know if more logs or snippets from my config are needed to triage.