mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
2917ef23b3
- Enable use-plugins test. - Stub out `kakoune-unwrapped` to avoid unnecessary downloads. - Unwrap unnecessary `config` attributes.
13 lines
201 B
Nix
13 lines
201 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ./stubs.nix ];
|
|
|
|
programs.kakoune = { enable = true; };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-path/share/kak/autoload/plugins
|
|
'';
|
|
}
|