mirror of
https://github.com/nix-community/home-manager
synced 2024-11-14 15:19:45 +01:00
13 lines
197 B
Nix
13 lines
197 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.kakoune = { enable = true; };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-path/share/kak/autoload/plugins
|
|
'';
|
|
};
|
|
}
|