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

19 lines
391 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.kakoune = {
enable = true;
plugins = [ pkgs.kakounePlugins.kak-powerline ];
};
nmt.script = let plugins_kak = "home-path/share/kak/plugins.kak";
in ''
assertFileRegex ${plugins_kak} \
'^source "/nix/store/.*-kak-powerline/share/kak/autoload/plugins/powerline/.*.kak"$'
'';
};
}