1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00
home-manager/tests/modules/programs/tmux/not-enabled.nix
2019-05-06 00:17:30 +02:00

14 lines
174 B
Nix

{ config, lib, ... }:
with lib;
{
config = {
programs.tmux = { enable = false; };
nmt.script = ''
assertPathNotExists home-files/.tmux.conf
'';
};
}