1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/programs/kakoune/no-plugins.nix
2020-11-05 21:00:22 -05:00

14 lines
197 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.kakoune = { enable = true; };
nmt.script = ''
assertPathNotExists home-path/share/kak/autoload/plugins
'';
};
}