tmux: general improvements and added options

See #575 for discussion.
This commit is contained in:
Wael M. Nasreddine 2019-02-09 17:19:56 -08:00 committed by Robert Helgesson
parent a3462daeb1
commit 2093cf425f
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
8 changed files with 334 additions and 11 deletions

View file

@ -0,0 +1,13 @@
{ config, lib, ... }:
with lib;
{
config = {
programs.tmux = { enable = false; };
nmt.script = ''
assertFileNotExists home-files/.tmux.conf
'';
};
}