forked from pub-solar/os
23 lines
518 B
Nix
23 lines
518 B
Nix
{ pkgs, ... }: {
|
|
imports = [ ../python ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
cquery
|
|
kak-lsp
|
|
kakoune-config
|
|
kakoune-unwrapped
|
|
nixfmt
|
|
python3Packages.python-language-server
|
|
rustup
|
|
];
|
|
|
|
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;
|
|
"xdg/kak/autoload/default".source =
|
|
"${pkgs.kakoune-unwrapped}/share/kak/rc";
|
|
};
|
|
}
|