pub-solar-os/profiles/develop/kakoune/default.nix

24 lines
533 B
Nix
Raw Normal View History

2020-01-04 05:06:31 +00:00
{ pkgs, ... }: {
2020-01-31 16:49:47 +00:00
imports = [ ../python ];
2019-12-15 07:03:57 +00:00
environment.systemPackages = with pkgs; [
cquery
kak-lsp
kakoune-config
2019-12-15 07:03:57 +00:00
kakoune-unwrapped
2020-01-04 05:06:31 +00:00
nixfmt
2019-12-15 07:03:57 +00:00
python3Packages.python-language-server
rustup
nix-linter
2019-12-15 07:03:57 +00:00
];
environment.etc = {
"xdg/kak/kakrc".source = ./kakrc;
"xdg/kak/autoload/plugins".source = ./plugins;
"xdg/kak/autoload/lint".source = ./lint;
"xdg/kak/autoload/lsp".source = ./lsp;
2020-01-04 05:06:31 +00:00
"xdg/kak/autoload/default".source =
"${pkgs.kakoune-unwrapped}/share/kak/rc";
2019-12-15 07:03:57 +00:00
};
}