1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-18 14:15:08 +01:00
home-manager/tests/modules/programs/kakoune/use-plugins.nix

15 lines
231 B
Nix
Raw Permalink 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
'';
}