depot/third_party/home-manager/tests/modules/programs/kakoune/no-plugins.nix

14 lines
209 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.kakoune = { enable = true; };
nmt.script = ''
assertFileNotRegex home-path/share/kak/plugins.kak . # file is empty
'';
};
}