b9675abb90
GitOrigin-RevId: 781d25b315def05cd7ede3765226c54216f0b1fe
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
|
|
'';
|
|
}
|