aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/tmux/not-enabled.nix
blob: b7c675a83a2c230cf741acf88f4816933fce8a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, ... }:

with lib;

{
  config = {
    programs.tmux = { enable = false; };

    nmt.script = ''
      assertPathNotExists home-files/.tmux.conf
    '';
  };
}