mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
e00dd0d7d2
Tmux 3.2 includes support to use `$XDG_CONFIG_HOME/tmux/tmux.conf` as well as `~/.config/tmux/tmux.conf` for configuration file.
13 lines
186 B
Nix
13 lines
186 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.tmux = { enable = false; };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/tmux/tmux.conf
|
|
'';
|
|
};
|
|
}
|