1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/programs/tmux/not-enabled.nix

14 lines
174 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
{
config = {
programs.tmux = { enable = false; };
nmt.script = ''
2019-05-06 00:17:30 +02:00
assertPathNotExists home-files/.tmux.conf
'';
};
}