1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 10:47:02 +00:00
home-manager/tests/modules/programs/kakoune/use-plugins.nix

15 lines
231 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
imports = [ ./stubs.nix ];
programs.kakoune = {
enable = true;
plugins = [ pkgs.kakoune-test-plugin ];
};
nmt.script = ''
assertDirectoryNotEmpty home-path/share/kak/autoload/plugins
'';
}