14 lines
174 B
Nix
14 lines
174 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.tmux = { enable = false; };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileNotExists home-files/.tmux.conf
|
||
|
'';
|
||
|
};
|
||
|
}
|