mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
13 lines
174 B
Nix
13 lines
174 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.tmux = { enable = false; };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.tmux.conf
|
|
'';
|
|
};
|
|
}
|