mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
11 lines
162 B
Nix
11 lines
162 B
Nix
{
|
|
config = {
|
|
programs.tmux = {
|
|
enable = false;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/tmux/tmux.conf
|
|
'';
|
|
};
|
|
}
|