1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/kakoune/no-plugins.nix

14 lines
201 B
Nix
Raw Normal View History

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