aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/home-manager/tests/modules/programs/kakoune/no-plugins.nix
blob: 67a7f30f5234ccb9304ae42c87660d57d512ed81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    programs.kakoune = { enable = true; };

    nmt.script = ''
      assertPathNotExists home-path/share/kak/autoload/plugins
    '';
  };
}