72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
18 lines
391 B
Nix
18 lines
391 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.kakoune = {
|
|
enable = true;
|
|
plugins = [ pkgs.kakounePlugins.kak-powerline ];
|
|
};
|
|
|
|
nmt.script = let plugins_kak = "home-path/share/kak/plugins.kak";
|
|
in ''
|
|
assertFileRegex ${plugins_kak} \
|
|
'^source "/nix/store/.*-kak-powerline/share/kak/autoload/plugins/powerline/.*.kak"$'
|
|
'';
|
|
};
|
|
}
|