I would like to add some programs to the tmux plugins, but for some reason it errors out with or without quotes around the package name. Maybe you can help me?
programs.tmux.plugins [ tmuxPlugins.resurrect tmuxPlugins.tilish tmuxPlugins.dracula ]
I would like to add some programs to the tmux plugins, but for some reason it errors out with or without quotes around the package name. Maybe you can help me?
programs.tmux.plugins [ tmuxPlugins.resurrect tmuxPlugins.tilish tmuxPlugins.dracula ]
They aren’t in scope, you need one of these:
programs.tmux.plugins = with pkgs.tmuxPlugins; [
resurrect
tilish
dracula
];
programs.tmux.plugins = with pkgs; [
tmuxPlugins.resurrect
tmuxPlugins.tilish
tmuxPlugins.dracula
];
programs.tmux.plugins = [
pkgs.tmuxPlugins.resurrect
pkgs.tmuxPlugins.tilish
pkgs.tmuxPlugins.dracula
];